v24.2.4 is released
This commit is contained in:
Родитель
ed64eea4c8
Коммит
27e5e09e91
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### Barcode
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-base",
|
||||
"version": "24.1.41",
|
||||
"version": "24.2.3",
|
||||
"description": "A common package of Essential JS 2 base Vue libraries, methods and class definitions",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -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,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
|
||||
### Switch
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I547814` - The issue with "Script error thrown when using toggle in angular platform" has been resolved.
|
||||
|
||||
## 24.1.46 (2024-01-17)
|
||||
|
||||
### Checkbox
|
||||
|
|
|
@ -84,6 +84,49 @@ The [Vue Switch](https://www.syncfusion.com/vue-components/vue-toggle-switch-but
|
|||
* [Text](https://ej2.syncfusion.com/vue/documentation/switch/getting-started#set-text-on-switch) - Supports text.
|
||||
* [Sizes](https://ej2.syncfusion.com/vue/documentation/switch/how-to#change-size) - Provided with different sizes of Switch.
|
||||
|
||||
### Vue Floating Action Button
|
||||
|
||||
The [Vue Floating Action Button](https://www.syncfusion.com/vue-components/vue-fab?utm_source=npm&utm_medium=listing&utm_campaign=vue-buttons-npm) component performs the primary action that appears in front of all screen contents. It has several built-in features such as support for icons, predefined styles, positions, and UI customization.
|
||||
|
||||
<p align="center">
|
||||
<a href="https://ej2.syncfusion.com/vue/documentation/floating-action-button/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=vue-buttons-npm">Getting Started</a> .
|
||||
<a href="https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-buttons-npm#/material/floating-action-button/overview.html">Online demos</a> .
|
||||
<a href="https://www.syncfusion.com/vue-components/vue-fab?utm_source=npm&utm_medium=listing&utm_campaign=vue-buttons-npm">Learn more</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img alt="Vue Floating Action Button Component" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/vue/vue-fab.png">
|
||||
</p>
|
||||
|
||||
#### Key features
|
||||
|
||||
* [Icons](https://ej2.syncfusion.com/vue/documentation/floating-action-button/icons) - Supports addition of both text and icon on the Button.
|
||||
* [Predefined styles](https://ej2.syncfusion.com/vue/documentation/floating-action-button/styles) - Provided with predefined styles for the Floating Action Button.
|
||||
* [Positions](https://ej2.syncfusion.com/vue/documentation/floating-action-button/positions) - Positioned anywhere on the target. If the target is not defined, then Floating Action Button is positioned based on the browser viewport.
|
||||
|
||||
### Vue Speed Dial
|
||||
|
||||
The [Vue Speed Dial](https://www.syncfusion.com/vue-components/vue-speed-dial?utm_source=npm&utm_medium=listing&utm_campaign=vue-buttons-npm) component is an extension of the floating action button that displays a list of action buttons when clicked. It has several built-in features such as support for items, predefined styles, positions, and UI customization.
|
||||
|
||||
<p align="center">
|
||||
<a href="https://ej2.syncfusion.com/vue/documentation/speed-dial/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=vue-buttons-npm">Getting Started</a> .
|
||||
<a href="https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-buttons-npm#/material/speed-dial/default.html">Online demos</a> .
|
||||
<a href="https://www.syncfusion.com/vue-components/vue-speed-dial?utm_source=npm&utm_medium=listing&utm_campaign=vue-buttons-npm">Learn more</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img alt="Vue Speed Dial Component" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/vue/vue-speeddial.gif">
|
||||
</p>
|
||||
|
||||
#### Key features
|
||||
|
||||
* [Items](https://ej2.syncfusion.com/vue/documentation/speed-dial/items) - Provides different items support for the Speed Dial.
|
||||
* [Predefined styles](https://ej2.syncfusion.com/vue/documentation/speed-dial/styles) - Provided with predefined styles for the Speed Dial.
|
||||
* [Positions](https://ej2.syncfusion.com/vue/documentation/speed-dial/positions) - Positioned anywhere on the target. If the target is not defined, then Speed Dial is positioned based on the browser viewport.
|
||||
* [Modes](https://ej2.syncfusion.com/vue/documentation/speed-dial/display-modes) - Supports display of items in both linear and radial display modes.
|
||||
* [Modal](https://ej2.syncfusion.com/vue/documentation/speed-dial/modal) - Adds an overlay to prevent the background interaction.
|
||||
* [Templates](https://ej2.syncfusion.com/vue/documentation/speed-dial/template) - Customize Speed Dial items and the popup content using templates.
|
||||
|
||||
<p align="center">
|
||||
Trusted by the world's leading companies
|
||||
<a href="https://www.syncfusion.com/">
|
||||
|
@ -132,4 +175,4 @@ Check the changelog [here](https://github.com/syncfusion/ej2-vue-ui-components/b
|
|||
|
||||
See [LICENSE FILE](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/license) for more info.
|
||||
|
||||
© Copyright 2023 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|
||||
© Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-buttons",
|
||||
"version": "24.1.46",
|
||||
"version": "24.2.3",
|
||||
"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",
|
||||
|
|
|
@ -27,7 +27,7 @@ export let ButtonComponent: DefineVueComponent<ButtonModel> = vueDefineComponen
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new Button({}) as any,
|
||||
ej2Instances: new Button({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: false as boolean,
|
||||
|
|
|
@ -29,7 +29,7 @@ export let CheckBoxComponent: DefineVueComponent<CheckBoxModel> = vueDefineComp
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new CheckBox({}) as any,
|
||||
ej2Instances: new CheckBox({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: false as boolean,
|
||||
|
|
|
@ -28,7 +28,7 @@ export let ChipListComponent: DefineVueComponent<ChipListModel> = vueDefineComp
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new ChipList({}) as any,
|
||||
ej2Instances: new ChipList({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
|
@ -27,7 +27,7 @@ export let FabComponent: DefineVueComponent<FabModel> = vueDefineComponent({
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new Fab({}) as any,
|
||||
ej2Instances: new Fab({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: false as boolean,
|
||||
|
|
|
@ -29,7 +29,7 @@ export let RadioButtonComponent: DefineVueComponent<RadioButtonModel> = vueDefi
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new RadioButton({}) as any,
|
||||
ej2Instances: new RadioButton({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: false as boolean,
|
||||
|
|
|
@ -30,7 +30,7 @@ export let SpeedDialComponent: DefineVueComponent<SpeedDialModel> = vueDefineCo
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new SpeedDial({}) as any,
|
||||
ej2Instances: new SpeedDial({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
|
@ -29,7 +29,7 @@ export let SwitchComponent: DefineVueComponent<SwitchModel> = vueDefineComponen
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new Switch({}) as any,
|
||||
ej2Instances: new Switch({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: false as boolean,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-calendars",
|
||||
"version": "24.1.47",
|
||||
"version": "24.2.3",
|
||||
"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",
|
||||
|
|
|
@ -2,6 +2,26 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### Chart
|
||||
|
||||
#### Features
|
||||
|
||||
- `#I528067` - Now, right-to-left scrolling is functioning correctly in the charts.
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I539074` - Now, the stacking column renders properly even when the series is sorted based on the series name.
|
||||
- `#I541484` - Now, the decimal point is displayed in the y-axis label when the language setting on Google is set to French.
|
||||
- `#I546219` - Now, the `visible` property in the series is working properly when updated dynamically.
|
||||
|
||||
### BulletChart
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I544771` - Now, the `textAlignment` property in the `dataLabel` is working properly.
|
||||
|
||||
## 24.1.47 (2024-01-23)
|
||||
|
||||
### AccumulationChart
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-charts",
|
||||
"version": "24.1.47",
|
||||
"version": "24.2.3",
|
||||
"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",
|
||||
|
|
|
@ -31,7 +31,7 @@ export let AccumulationChartComponent: DefineVueComponent<AccumulationChartModel
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new AccumulationChart({}) as any,
|
||||
ej2Instances: new AccumulationChart({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
|
@ -30,7 +30,7 @@ export let BulletChartComponent: DefineVueComponent<BulletChartModel> = vueDefi
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new BulletChart({}) as any,
|
||||
ej2Instances: new BulletChart({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
|
@ -42,7 +42,7 @@ export let ChartComponent: DefineVueComponent<ChartModel> = vueDefineComponent(
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new Chart({}) as any,
|
||||
ej2Instances: new Chart({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
|
@ -34,7 +34,7 @@ export let Chart3DComponent: DefineVueComponent<Chart3DModel> = vueDefineCompon
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new Chart3D({}) as any,
|
||||
ej2Instances: new Chart3D({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
|
@ -30,7 +30,7 @@ export let RangeNavigatorComponent: DefineVueComponent<RangeNavigatorModel> = v
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new RangeNavigator({}) as any,
|
||||
ej2Instances: new RangeNavigator({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
|
@ -28,7 +28,7 @@ export let SmithchartComponent: DefineVueComponent<SmithchartModel> = vueDefine
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new Smithchart({}) as any,
|
||||
ej2Instances: new Smithchart({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
|
@ -28,7 +28,7 @@ export let SparklineComponent: DefineVueComponent<SparklineModel> = vueDefineCo
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new Sparkline({}) as any,
|
||||
ej2Instances: new Sparkline({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
|
@ -38,7 +38,7 @@ export let StockChartComponent: DefineVueComponent<StockChartModel> = vueDefine
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new StockChart({}) as any,
|
||||
ej2Instances: new StockChart({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### CircularGauge
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-diagrams",
|
||||
"version": "24.1.47",
|
||||
"version": "24.2.3",
|
||||
"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",
|
||||
|
|
|
@ -2,6 +2,23 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### DocumentEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I526349` - Resolved the shape overlapping issue.
|
||||
- `#I507001` - Resolved the track changes count mismatch issue.
|
||||
- `#I542276` - Resolved the shape alignment issue when insert enter.
|
||||
- `#I543927` - Resolved the spacing issue of the image is being pushed to a third page.
|
||||
- `#I538962` - Resolved the issues when accepting the track changes.
|
||||
- `#I534920` - Resolved the track changes issue.
|
||||
- `#I539334` - Resolved the undo issue with deleted table on track changes enabled.
|
||||
- `#I543421` - Resolved the spell check issue in Blazor.
|
||||
- `#I525746` - Resolved the input lag issue when using multi columns.
|
||||
- `#I541459` - Resolved the table border style issue.
|
||||
|
||||
## 24.1.47 (2024-01-23)
|
||||
|
||||
### DocumentEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-documenteditor",
|
||||
"version": "24.1.47",
|
||||
"version": "24.2.3",
|
||||
"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",
|
||||
|
|
|
@ -2,7 +2,26 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### ListBox
|
||||
|
||||
-`#I528014`- Issue with 'change' event is triggered while filtering in Angular.
|
||||
|
||||
|
||||
### DropdownList
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I545534` - Fixed an issue where the Popup Element was not being destroyed when rendering inside the In-place editor.
|
||||
|
||||
### MultiSelect
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I534853` - Fixed an issue where a console exception occurred when typing a custom value in the input field.
|
||||
|
||||
## 24.1.47 (2024-01-23)
|
||||
|
||||
### ListBox
|
||||
|
||||
|
@ -15,15 +34,10 @@
|
|||
#### Bug Fixes
|
||||
|
||||
- `#I531844` - Fixed issue where custom value could not be added to combobox when dataSource is empty.
|
||||
- `#F49952` - Fixed an issue where the combobox change event was not being triggered when clear the value using backspace.
|
||||
|
||||
## 24.1.46 (2024-01-17)
|
||||
|
||||
### DropDownTree
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I541407` - The issue with the Dropdown Tree popup not closing when the preselected value is again selected has been resolved.
|
||||
|
||||
### MultiSelect
|
||||
|
||||
#### Bug Fixes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-dropdowns",
|
||||
"version": "24.1.46",
|
||||
"version": "24.2.3",
|
||||
"description": "Essential JS 2 DropDown Components for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -29,7 +29,7 @@ export let AutoCompleteComponent: DefineVueComponent<AutoCompleteModel> = vueDe
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new AutoComplete({}) as any,
|
||||
ej2Instances: new AutoComplete({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: false as boolean,
|
||||
|
|
|
@ -29,7 +29,7 @@ export let ComboBoxComponent: DefineVueComponent<ComboBoxModel> = vueDefineComp
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new ComboBox({}) as any,
|
||||
ej2Instances: new ComboBox({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: false as boolean,
|
||||
|
|
|
@ -29,7 +29,7 @@ export let DropDownListComponent: DefineVueComponent<DropDownListModel> = vueDe
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new DropDownList({}) as any,
|
||||
ej2Instances: new DropDownList({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: false as boolean,
|
||||
|
|
|
@ -29,7 +29,7 @@ export let DropDownTreeComponent: DefineVueComponent<DropDownTreeModel> = vueDe
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new DropDownTree({}) as any,
|
||||
ej2Instances: new DropDownTree({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: false as boolean,
|
||||
|
|
|
@ -29,7 +29,7 @@ export let ListBoxComponent: DefineVueComponent<ListBoxModel> = vueDefineCompon
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new ListBox({}) as any,
|
||||
ej2Instances: new ListBox({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: false as boolean,
|
||||
|
|
|
@ -27,7 +27,7 @@ export let MentionComponent: DefineVueComponent<MentionModel> = vueDefineCompon
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new Mention({}) as any,
|
||||
ej2Instances: new Mention({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: false as boolean,
|
||||
|
|
|
@ -29,7 +29,7 @@ export let MultiSelectComponent: DefineVueComponent<MultiSelectModel> = vueDefi
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new MultiSelect({}) as any,
|
||||
ej2Instances: new MultiSelect({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: false as boolean,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-filemanager",
|
||||
"version": "24.1.47",
|
||||
"version": "24.2.3",
|
||||
"description": "Essential JS 2 FileManager Component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,17 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### GanttChart
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I550406` - Task type property does not update properly by mapping work field issue has been fixed.
|
||||
- `#I542029` - Unable to render full lengthy text in pdf export issue has been fixed.
|
||||
- `#I549638` - The taskbar edit action is not working in RTL mode issue has been fixed.
|
||||
- `#I544478` - Validation rules not working for numeric field issue has been fixed.
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
|
||||
### GanttChart
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-gantt",
|
||||
"version": "24.1.47",
|
||||
"version": "24.2.3",
|
||||
"description": "Essential JS 2 Gantt Component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,16 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### Grid
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#FB48959` - Empty grid message does not display correctly when drag and drop is enabled issue has been resolved.
|
||||
- `#FB50056` - Aggregates not working properly when Exporting Grid with custom dataSource issue has been resolved.
|
||||
- `#I538079` - The alignment issue with the frozen grid while using EJ compatibility CSS has been resolved.
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
|
||||
### Grid
|
||||
|
@ -11,7 +21,6 @@
|
|||
- `#FB49514` - Resolved the issue where the entire page was reloading on Command Column button actions in grid with remote data.
|
||||
- `#I537973` - Fixed the issue where the clear icon of the search bar was displayed when clicking outside the grid.
|
||||
- `#I532462` - Resolved the problem with focus and keyboard traversal in the `checkbox filter popup` elements and `filter menu` elements.
|
||||
- `#I538079` - The alignment issue with the frozen grid while using EJ compatibility CSS has been resolved.
|
||||
|
||||
## 24.1.47 (2024-01-23)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-grids",
|
||||
"version": "24.1.47",
|
||||
"version": "24.2.3",
|
||||
"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",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
## 24.1.41 (2023-12-18)
|
||||
|
||||
### HeatMap
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-heatmap",
|
||||
"version": "18.14.11",
|
||||
"version": "24.2.3",
|
||||
"description": "Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -28,7 +28,7 @@ export let HeatMapComponent: DefineVueComponent<HeatMapModel> = vueDefineCompon
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new HeatMap({}) as any,
|
||||
ej2Instances: new HeatMap({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
|
@ -2,6 +2,16 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### Image Editor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- The issue with "Undo redo not proper with annotations and frame" has been resolved.
|
||||
- The issue with "Toolbar updating event argument values are not updated properly" has been resolved.
|
||||
- The issue with "Text area is unable to deselect while placing an external text area with Image Editor" has been resolved.
|
||||
|
||||
## 24.1.46 (2024-01-17)
|
||||
|
||||
### Image Editor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-image-editor",
|
||||
"version": "24.1.46",
|
||||
"version": "24.2.3",
|
||||
"description": "Essential JS 2 ImageEditor for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,20 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### Uploader
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I526571` - Fixed the issue where the header in the Cancel Event was not returning in the header as expected. Instead, it was returning in the payload.
|
||||
|
||||
### TextBox
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I548068` - Fixed the issue where a compilation error occurred while generating the CSS file from the `DataForm` related styles.
|
||||
|
||||
## 24.1.47 (2024-01-23)
|
||||
|
||||
### Signature
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-inputs",
|
||||
"version": "24.1.47",
|
||||
"version": "24.2.3",
|
||||
"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",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### Dashboard Layout
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#FB49154` - The console error in the Dashboard Layout component when resizing the browser window has been resolved.
|
||||
|
||||
## 20.4.48 (2023-02-01)
|
||||
|
||||
### Splitter
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-layouts",
|
||||
"version": "24.1.41",
|
||||
"version": "24.2.3",
|
||||
"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 Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -14,6 +14,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### Maps
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I545401`, `#I547542` - Markers will be rendered properly in the correct location when they are added dynamically by clicking over a custom shape map.
|
||||
- `#I545484` - Exceptions will no longer be thrown when the markers are dragged at the maximum zoom level.
|
||||
|
||||
## 24.1.47 (2024-01-23)
|
||||
|
||||
### Maps
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-maps",
|
||||
"version": "24.1.47",
|
||||
"version": "24.2.3",
|
||||
"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 Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -37,7 +37,7 @@ export let MapsComponent: DefineVueComponent<MapsModel> = vueDefineComponent({
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new Maps({}) as any,
|
||||
ej2Instances: new Maps({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
#### Bug fixes
|
||||
|
||||
- `#I546255` - An issue tab switching on disable item has been resolved.
|
||||
- `#I523951` - The issue with React's selection of a tab item using the select method, where all tab items were being underlined, has been resolved.
|
||||
|
||||
## 24.1.46 (2024-01-17)
|
||||
|
||||
|
|
|
@ -226,6 +226,29 @@ The [Vue Menu](https://www.syncfusion.com/vue-components/vue-menu-bar?utm_source
|
|||
* [Hamburger Menu](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-navigation-npm#/bootstrap5/menu/hamburger-mode.html) - Supports Hamburger Menu that provides an adaptive view.
|
||||
* [Accessibility](https://ej2.syncfusion.com/vue/documentation/menu/accessibility/) - Provided with built-in accessibility support that helps to access all the Menu component features through the keyboard, screen readers, or other assistive technology devices.
|
||||
|
||||
### Vue Stepper
|
||||
|
||||
The [Vue Stepper](https://www.syncfusion.com/vue-components/vue-stepper?utm_source=npm&utm_medium=listing&utm_campaign=vue-navigation-npm) component enables users to navigate through a series of steps or stages in a process within a web application. Stepper displays a list of steps with the current step highlighted, allowing users to move between steps. It includes several built-in features, such as different step types, orientation, linear flow, label positions, and template customization.
|
||||
|
||||
<p align="center">
|
||||
<a href="https://ej2.syncfusion.com/vue/documentation/stepper/getting-started?utm_source=npm&utm_medium=listing&utm_campaign=vue-navigation-npm">Getting Started</a> .
|
||||
<a href="https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-navigation-npm#/bootstrap5/stepper/default.html">Online demos</a> .
|
||||
<a href="https://www.syncfusion.com/vue-components/vue-stepper?utm_source=npm&utm_medium=listing&utm_campaign=vue-navigation-npm">Learn more</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img alt="Vue Stepper Component" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/vue/vue-stepper.png">
|
||||
</p>
|
||||
|
||||
#### Key features
|
||||
|
||||
* [Step Types](https://ej2.syncfusion.com/vue/documentation/stepper/steptypes) - Display steps with indicators and labels, only indicators, or only labels.
|
||||
* [Orientation](https://ej2.syncfusion.com/vue/documentation/stepper/orientations) - A layout to display steps in a horizontal or vertical orientation.
|
||||
* [Linear Flow](https://ej2.syncfusion.com/vue/documentation/stepper/linear-flow) - Enable a step-by-step progression, completing one step before moving on to the next.
|
||||
* [Label Positioning](https://ej2.syncfusion.com/vue/documentation/stepper/steptypes#label-positions) - Show the label at the top, bottom, left, or right.
|
||||
* [Tooltip](https://ej2.syncfusion.com/vue/documentation/stepper/tooltip) - Show additional information when users hover over a step, such as a label or customized text.
|
||||
* [Templates](https://ej2.syncfusion.com/vue/documentation/stepper/template) - Customize the default appearance and content of each step using templates.
|
||||
|
||||
<p align="center">
|
||||
Trusted by the world's leading companies
|
||||
<a href="https://www.syncfusion.com/">
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-navigations",
|
||||
"version": "24.1.46",
|
||||
"version": "24.2.3",
|
||||
"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 Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### Toast
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `F186544` - Resolved issue where the Toast Destroy method was causing an exception.
|
||||
|
||||
## 24.1.41 (2023-12-18)
|
||||
|
||||
### Message
|
||||
|
|
|
@ -68,6 +68,26 @@ The [Vue Toast](https://www.syncfusion.com/vue-components/vue-toaster?utm_source
|
|||
* [Action buttons](https://ej2.syncfusion.com/vue/documentation/toast/action-buttons/) - Supports to add buttons in the toast for archiving any actions within the toast.
|
||||
* [Template](https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-notification-npm#/material/toast/template.html) - User customized element can be defined for the toast using the template property.
|
||||
|
||||
### Vue Skeleton
|
||||
|
||||
The [Vue Skeleton](https://www.syncfusion.com/vue-components/vue-skeleton?utm_source=npm&utm_medium=listing&utm_campaign=vue-notifications-npm) component is a placeholder that animates a shimmer effect to let users know that the page’s content is currently loading. It has several built-in features such as support for shapes, shimmer effect, and UI customization.
|
||||
|
||||
<p align="center">
|
||||
<a href="https://ej2.syncfusion.com/vue/documentation/skeleton/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=vue-notifications-npm">Getting Started</a> .
|
||||
<a href="https://ej2.syncfusion.com/vue/demos/?utm_source=npm&utm_medium=listing&utm_campaign=vue-notifications-npm#/material/skeleton/default.html">Online demos</a> .
|
||||
<a href="https://www.syncfusion.com/vue-components/vue-skeleton?utm_source=npm&utm_medium=listing&utm_campaign=vue-notifications-npm">Learn more</a>
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<img alt="Vue Skeleton Component" src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/vue/vue-skeleton.gif">
|
||||
</p>
|
||||
|
||||
#### Key features
|
||||
|
||||
* [Shapes](https://ej2.syncfusion.com/vue/documentation/skeleton/shapes) - Provides various built-in shape variants to design the layout of the page.
|
||||
* [ShimmerEffect](https://ej2.syncfusion.com/vue/documentation/skeleton/shimmer-effect) - Provides an option to display the skeleton with various animation effects.
|
||||
* [Styles](https://ej2.syncfusion.com/vue/documentation/skeleton/styles) - Customize the style of a skeleton.
|
||||
|
||||
## Setup
|
||||
|
||||
To install `notifications` and its dependent packages, use the following command,
|
||||
|
@ -109,4 +129,4 @@ Check the changelog [here](https://github.com/syncfusion/ej2-vue-ui-components/b
|
|||
|
||||
See [LICENSE FILE](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/license) for more info.
|
||||
|
||||
© Copyright 2023 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|
||||
© Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-notifications",
|
||||
"version": "24.1.41",
|
||||
"version": "24.2.3",
|
||||
"description": "A package of Essential JS 2 notification components such as Toast and Badge which used to notify important information to end-users. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,20 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### PDF Viewer
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I544458` - Now, the tooltip content is not displayed for read-only form fields in preview mode.
|
||||
- `#I542660` - Now, the annotation collection was properly updated when performing undo and redo.
|
||||
- `#I538222` - Now, the annotations are appeared properly in the MVC package in the provided rotated PDF document.
|
||||
- `#F186268` - Now, the measurement value is retained when downloading the document in a Stand-alone PDF Viewer.
|
||||
- `#F186304` - Now, the measurement scale ratio value does not get swapped when opened again after setting it in the scale ratio property dialog.
|
||||
- `#I541860` - Now, the radio button position is not changed when downloading the document after zooming in PDF Viewer MVC.
|
||||
- `#I544942` - Now, the `exportAnnotationsAsBase64String` functionality is working properly.
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
|
||||
### PDF Viewer
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-pdfviewer",
|
||||
"version": "24.1.46",
|
||||
"version": "24.2.3",
|
||||
"description": "Essential JS 2 PDF viewer Component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,17 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### PivotTable
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I545563` - On demand date formatting will now be applied properly in the pivot table.
|
||||
- `#I540803` - The pivot table will now be properly rendered while changing the width of the first column with virtualization enabled.
|
||||
- `#I547664` - The pivot table will now be properly exported as an excel document via the server-side engine.
|
||||
- `#I548392` - Aggregated values will now be displayed correctly in the OLAP pivot table.
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
|
||||
### PivotTable
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-pivotview",
|
||||
"version": "24.1.47",
|
||||
"version": "24.2.3",
|
||||
"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 Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-popups",
|
||||
"version": "24.1.46",
|
||||
"version": "24.2.3",
|
||||
"description": "A package of Essential JS 2 popup components such as Dialog and Tooltip that is used to display information or messages in separate pop-ups. for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-progressbar",
|
||||
"version": "24.1.41",
|
||||
"version": "24.2.3",
|
||||
"description": "Essential JS 2 ProgressBar Component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-querybuilder",
|
||||
"version": "24.1.46",
|
||||
"version": "24.2.3",
|
||||
"description": "Essential JS 2 QueryBuilder for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-ribbon",
|
||||
"version": "24.1.44",
|
||||
"version": "24.2.3",
|
||||
"description": "Essential JS 2 Component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -31,7 +31,7 @@ export let RibbonComponent: DefineVueComponent<RibbonModel> = vueDefineComponen
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new Ribbon({}) as any,
|
||||
ej2Instances: new Ribbon({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
|
@ -2,13 +2,24 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### RichTextEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I530749` - Now, the `change` event is triggered properly when inserting the mention list items in the Rich Text Editor.
|
||||
- `#I534487` - Now, applying the bold format to the Rich Text Editor when focusing on another Rich Text Editor in the page works properly.
|
||||
- `#I539510` - Now, when an empty string `value` is loaded, the cursor will not focus automatically in the Rich Text Editor.
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
|
||||
### RichTextEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I534487` - Now, applying the bold format to the Rich Text Editor when focusing on another Rich Text Editor in the page works properly.
|
||||
- `#I534094` - Now, when using the `click` event with a custom toolbar template, the Rich Text Editor works properly.
|
||||
- `#I541522` - Now, when the window is resized to the minimum width, the Rich Text Editor's content font size is updated properly.
|
||||
|
||||
## 24.1.47 (2024-01-23)
|
||||
|
||||
|
@ -17,8 +28,6 @@
|
|||
#### Bug Fixes
|
||||
|
||||
- `#I542710` - Now, pressing the `tab` key in the list applies the nested list properly when the mention component is used in the Rich Text Editor.
|
||||
- `#I541522` - Now, when the window is resized to the minimum width, the Rich Text Editor's content font size is updated properly.
|
||||
- `#I534094` - Now, when using the `click` event with a custom toolbar template, the Rich Text Editor works properly.
|
||||
|
||||
## 24.1.46 (2024-01-17)
|
||||
|
||||
|
@ -37,7 +46,6 @@
|
|||
#### Bug Fixes
|
||||
|
||||
- `#I534488` - Now, applying different style formats without focusing inside the Rich Text Editor works properly.
|
||||
- `#I530749` - Now, the `change` event is triggered properly when inserting the mention list items in the Rich Text Editor.
|
||||
- `#I534481` - Now, when applying the font family `Arial` to the text content in the Rich Text Editor, the toolbar status is updated properly.
|
||||
|
||||
## 24.1.43 (2023-12-27)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-richtexteditor",
|
||||
"version": "24.1.47",
|
||||
"version": "24.2.3",
|
||||
"description": "Essential JS 2 RichTextEditor component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,23 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### Schedule
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I540139` - The appointment disappearance issue while using the `rowAutoHeight` has been resolved.
|
||||
- `#I524766` - An issue related to scaling has been fixed.
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
|
||||
### Schedule
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I541680` - An issue related to more indicator in the timeline views has been fixed.
|
||||
|
||||
## 24.1.41 (2023-12-18)
|
||||
|
||||
### Schedule
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-schedule",
|
||||
"version": "24.1.41",
|
||||
"version": "24.2.3",
|
||||
"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 Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### DropDownButton
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-spreadsheet",
|
||||
"version": "24.1.47",
|
||||
"version": "24.2.3",
|
||||
"description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-treegrid",
|
||||
"version": "24.1.46",
|
||||
"version": "24.2.3",
|
||||
"description": "Essential JS 2 TreeGrid Component for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-vue-treemap",
|
||||
"version": "24.1.41",
|
||||
"version": "24.2.3",
|
||||
"description": "Essential JS 2 TreeMap Components for Vue",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -29,7 +29,7 @@ export let TreeMapComponent: DefineVueComponent<TreeMapModel> = vueDefineCompon
|
|||
provide() { return { custom: this.custom } },
|
||||
data() {
|
||||
return {
|
||||
ej2Instance: new TreeMap({}) as any,
|
||||
ej2Instances: new TreeMap({}) as any,
|
||||
propKeys: properties as string[],
|
||||
models: modelProps as string[],
|
||||
hasChildDirective: true as boolean,
|
||||
|
|
Загрузка…
Ссылка в новой задаче