Skip to content

Commit

Permalink
v28.1.39 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
pipeline committed Jan 14, 2025
1 parent 49ccf95 commit b85ae5a
Show file tree
Hide file tree
Showing 43 changed files with 205 additions and 41 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]

## 28.1.38 (2025-01-07)
## 28.1.39 (2024-01-14)

### Barcode

Expand Down
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]

## 28.1.38 (2025-01-07)
## 28.1.39 (2024-01-14)

### Switch

#### Bug Fixes

- `#I933399`- The issue with "Checked state not update properly while changing the switch component programmatically using click event of input element" has been resolved.

## 28.1.37 (2024-12-31)

### Switch

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": "28.1.33",
"version": "28.1.37",
"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
10 changes: 9 additions & 1 deletion components/calendars/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@

## [Unreleased]

## 28.1.38 (2025-01-07)
## 28.1.39 (2024-01-14)

### DateRangePicker

#### Bug Fixes

- `#I666998` - Fixed an issue where the start and end date selection was not maintained in the popup.

## 28.1.37 (2024-12-31)

### DateRangePicker

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": "28.1.35",
"version": "28.1.37",
"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
8 changes: 8 additions & 0 deletions components/charts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## 28.1.39 (2024-01-14)

### Chart

#### Bug Fixes

- `#I663652` - The calculations for both sum and intermediate sum indexes have been corrected.

## 28.1.38 (2025-01-07)

### 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": "28.1.37",
"version": "28.1.38",
"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]

## 28.1.38 (2025-01-07)
## 28.1.39 (2024-01-14)

### Circular Gauge

Expand Down
13 changes: 12 additions & 1 deletion components/diagrams/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,25 @@

## [Unreleased]

## 28.1.38 (2025-01-07)
## 28.1.39 (2024-01-14)

### Diagram

#### Bug Fixes

- `#I668014` - Performance improved for loading diagrams with complex hierarchical tree layouts with path nodes.
- `#I672924` - EJ1 diagrams now load in EJ2 Diagram Builder even when the port shape is undefined.
- `#I676157` - Fixed issue where completing Polyline drawing was not possible on iPad Safari browser.

## 28.1.37 (2024-12-31)

### Diagram

#### Bug Fixes

- `#I664086` - Bezier settings are now applied to freehand connectors during the drawing process.
- `#I664088` - Segment points are now draggable even when the pointer is positioned on the outer part of an increased segment thumb size.
- `#I658382` - Z-order is now updated correctly for HTML and native nodes when using `moveForward` or `sendBackward`.

## 28.1.36 (2024-12-24)

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": "28.1.35",
"version": "28.1.37",
"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
8 changes: 8 additions & 0 deletions components/diagrams/src/diagram/diagram.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,9 @@ export let DiagramComponent: DefineVueComponent<DiagramModel> = vueDefineCompon
getParentId(id: string): string {
return this.ej2Instances.getParentId(id);
},
getPathData(key: string): Object[] {
return this.ej2Instances.getPathData(key);
},
getTool(action: string): Object {
return this.ej2Instances.getTool(action);
},
Expand Down Expand Up @@ -383,6 +386,9 @@ export let DiagramComponent: DefineVueComponent<DiagramModel> = vueDefineCompon
setActiveLayer(layerName: string): void {
return this.ej2Instances.setActiveLayer(layerName);
},
setPathData(key: string, data: Object[]): void {
return this.ej2Instances.setPathData(key, data);
},
setStackLimit(stackLimit: number): void {
return this.ej2Instances.setStackLimit(stackLimit);
},
Expand Down Expand Up @@ -491,6 +497,7 @@ export type DiagramComponent = typeof ComponentBase & {
getNodeObject(id: string): Object;
getObject(name: string): Object;
getParentId(id: string): string;
getPathData(key: string): Object[];
getTool(action: string): Object;
group(): void;
hideTooltip(obj: Object | Object): void;
Expand Down Expand Up @@ -529,6 +536,7 @@ export type DiagramComponent = typeof ComponentBase & {
sendLayerBackward(layerName: string): void;
sendToBack(): void;
setActiveLayer(layerName: string): void;
setPathData(key: string, data: Object[]): void;
setStackLimit(stackLimit: number): void;
showTooltip(obj: Object | Object): void;
startGroupAction(): void;
Expand Down
10 changes: 10 additions & 0 deletions components/documenteditor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

## [Unreleased]

## 28.1.39 (2024-01-14)

### DocumentEditor

#### Bug Fixes

- `#I660432` - Improved performance when applying formatting to an entire document.
- `#I668208` - Fixed text duplication caused by the move-down action outside the editable element after inserting text using Japanese IME on Windows.
- `#I665638` - Addressed issues with arrow keys, deletion, and keyboard input in form field protection mode for Content Controls.

## 28.1.38 (2025-01-07)

### 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": "28.1.37",
"version": "28.1.38",
"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
14 changes: 14 additions & 0 deletions components/dropdowns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

## [Unreleased]

## 28.1.39 (2024-01-14)

### ListBox

#### Bug Fixes

- `#I933368` - Issue with "Filter input loss focus if the last letter is removed using backspace in listbox" has been resolved.

### Mention

#### Bug Fixes

- `#FB64462` - Resolved an issue where the `readonly` feature was not functioning correctly when integrating the Rich Text Editor with the mention functionality.

## 28.1.38 (2025-01-07)

### DropDownTree
Expand Down
2 changes: 1 addition & 1 deletion components/dropdowns/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-dropdowns",
"version": "28.1.37",
"version": "28.1.38",
"description": "Essential JS 2 DropDown Components for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
8 changes: 8 additions & 0 deletions components/filemanager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## 28.1.39 (2024-01-14)

### FileManager

#### Bug Fixes

- `#I676141` - The issue with current directory drag-and-drop functionality in the navigation pane of the File Manager component has been resolved.

## 28.1.36 (2024-12-24)

### FileManager
Expand Down
17 changes: 17 additions & 0 deletions components/gantt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,30 @@

## [Unreleased]

## 28.1.39 (2024-01-14)

### GanttChart

#### Bug fixes

- `#I668317` - Timeline tiers get misaligned while using timeline virtualization in `DST` zone issue has been fixed.
- `#I676849` - When the context menu action is cancel, the added child record is still considered as a parent issue has been fixed.
- `#I606658` - Taskbar not render correct position when `zoomToFit` issue has been fixed.
- `#I668145` - A script error is thrown when the Delete Dependency context menu item is clicked issue has been fixed.
- `#I676845` - Console error occurred while exporting PDF without columns property issue has been fixed.
- `#I661832` - collapsed records were not in the viewport for the last set of records with a large number of child records, issue has been fixed.
- `#I664339` - Template not destroyed while zooming action issue has been fixed.

## 28.1.38 (2025-01-07)

### GanttChart

#### Bug fixes

- `#I668777` - Toolbar visible property not working issue has been fixed.
- `#I668317` - Timeline tiers get misaligned while using timeline virtualization in `DST` zone issue has been fixed.
- `#I674918` - When virtualization is enabled, the resource collection does not display properly in the resource tab issue has been fixed.
- `#I667515` - Horizontal scroll jumps to starting point while scrolling after zooming actions issue has been fixed.

## 28.1.37 (2024-12-31)

Expand Down
2 changes: 1 addition & 1 deletion components/gantt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-gantt",
"version": "28.1.37",
"version": "28.1.38",
"description": "Essential JS 2 Gantt Component for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
2 changes: 1 addition & 1 deletion components/grids/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-grids",
"version": "28.1.37",
"version": "28.1.38",
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
12 changes: 10 additions & 2 deletions components/imageeditor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## 28.1.39 (2024-01-14)

### Image Editor

#### Bug Fixes

- `#I932270` - The issue with "Need to load images with policy tokens in the React ImageEditor component" has been resolved.

## 28.1.33 (2024-12-12)

### Image Editor
Expand All @@ -11,9 +19,9 @@

#### Features

- The Image Editor component now supports image restrictions via the `uploadSettings` property, enabling users to specify allowed image extensions and define minimum and maximum image sizes.
- The Image Editor component now includes support for image restrictions through `uploadSettings`. Developers can specify allowed image extensions and set minimum and maximum image sizes. If an image does not meet the criteria, users will receive an alert message, ensuring improved image validation and better control over uploads.

- The Image Editor component now supports the `WEBP` format, allowing users to upload and save WEBP images.
- The Image Editor component now supports the `WebP` format, allowing users to upload and save WEBP images.

## 27.1.50 (2024-09-24)

Expand Down
2 changes: 1 addition & 1 deletion components/inputs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 28.1.38 (2025-01-07)
## 28.1.37 (2024-12-31)

### Uploader

Expand Down
22 changes: 15 additions & 7 deletions components/inputs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,16 +189,24 @@ The [Vue Rating](https://www.syncfusion.com/vue-components/vue-rating?utm_source

### Vue OTP Input

The `Vue OTP Input` component is designed to securely enter and verify single-use passwords for multi-factor authentication purposes in various applications, such as banking, e-commerce, or account login processes. It has several built-in features such as support for input types, styling modes, placeholder, seperators, and customization.
The [Vue OTP Input](https://www.syncfusion.com/vue-components/vue-otp-input?utm_source=npm&utm_medium=listing&utm_campaign=vue-inputs-npm) component is designed to securely enter and verify single-use passwords for multi-factor authentication purposes in various applications, such as banking, e-commerce, or account login processes. It has several built-in features such as support for input types, styling modes, placeholder, seperators, and customization.

<p align="center">
<a href="https://ej2.syncfusion.com/vue/documentation/otp-input/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=vue-inputs-npm">Getting Started</a> .
<a href="https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-inputs-npm#/fluent2/otp-input/default">Online demos</a> .
<a href="https://www.syncfusion.com/vue-components/vue-otp-input?utm_source=npm&utm_medium=listing&utm_campaign=vue-inputs-npm">Learn more</a>
</p>

<p align="center">
<img alt="Vue OTP Input Component" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/vue/vue-otp-input.png">

#### Key features

* `Input types` - Allow specifying the input type as text, number, or password for the OTP input..
* `Styling modes` - Offer built-in styling options such as underline, outline, or fill.
* `Tooltip` - Displays additional information of the rating items.
* `Placeholders` - Allow setting a hint character for each input field, indicating the expected value.
* `Separators` - Specify a character to be placed between input fields.
* `Customization` - Allows customizing the default appearance, including input field styling, input length, and more.
* [Input types](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-otp-input-npm#/fluent2/otp-input/default) - Allow specifying the input type as text, number, or password for the OTP input..
* [Styling modes](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-otp-input-npm#/fluent2/otp-input/api) - Offer built-in styling options such as underline, outline, or fill.
* [Placeholders](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-otp-input-npm#/fluent2/otp-input/api) - Allow setting a hint character for each input field, indicating the expected value.
* [Separators](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-otp-input-npm#/fluent2/otp-input/api) - Specify a character to be placed between input fields.
* [Customization](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-otp-input-npm#/fluent2/otp-input/api) - Allows customizing the default appearance, including input field styling, input length, and more.

<p align="center">
Trusted by the world's leading companies
Expand Down
2 changes: 1 addition & 1 deletion components/inputs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-inputs",
"version": "28.1.33",
"version": "28.1.37",
"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 Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
2 changes: 1 addition & 1 deletion components/lists/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 28.1.38 (2025-01-07)
## 28.1.39 (2024-01-14)

### ListBox

Expand Down
2 changes: 1 addition & 1 deletion components/maps/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

## [Unreleased]

## 28.1.38 (2025-01-07)
## 28.1.39 (2024-01-14)

### Maps

Expand Down
2 changes: 1 addition & 1 deletion components/multicolumncombobox/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 28.1.38 (2025-01-07)
## 28.1.39 (2024-01-14)

### MultiColumn ComboBox

Expand Down
2 changes: 1 addition & 1 deletion components/navigations/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 28.1.38 (2025-01-07)
## 28.1.39 (2024-01-14)

### Tab

Expand Down
2 changes: 1 addition & 1 deletion components/notifications/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 28.1.38 (2025-01-07)
## 28.1.39 (2024-01-14)

### Message

Expand Down
Loading

0 comments on commit b85ae5a

Please sign in to comment.