Skip to content

Commit e7a462c

Browse files
author
pipeline
committed
v25.1.37 is released
1 parent f95b9e5 commit e7a462c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+388
-62
lines changed

components/barcodegenerator/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 25.1.35 (2024-03-15)
5+
## 25.1.37 (2024-03-26)
66

77
### Barcode
88

components/barcodegenerator/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"source-map-loader": "^0.2.1",
2828
"@types/chai": "^3.4.28",
2929
"@types/es6-promise": "0.0.28",
30-
"@types/jasmine": "^2.2.29",
30+
"@types/jasmine": "2.8.22",
3131
"@types/jasmine-ajax": "^3.1.27",
3232
"@types/requirejs": "^2.1.26",
3333
"vue": "2.6.14",

components/barcodegenerator/src/barcode-generator/barcodegenerator.component.ts

+20-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export let BarcodeGeneratorComponent: DefineVueComponent<BarcodeGeneratorModel>
2727
provide() { return { custom: this.custom } },
2828
data() {
2929
return {
30-
ej2Instance: new BarcodeGenerator({}) as any,
30+
ej2Instances: new BarcodeGenerator({}) as any,
3131
propKeys: properties as string[],
3232
models: modelProps as string[],
3333
hasChildDirective: false as boolean,
@@ -103,7 +103,25 @@ export let BarcodeGeneratorComponent: DefineVueComponent<BarcodeGeneratorModel>
103103
}
104104
});
105105

106-
export type BarcodeGeneratorComponent = InstanceType<typeof BarcodeGeneratorComponent>;
106+
export type BarcodeGeneratorComponent = typeof ComponentBase & {
107+
ej2Instances: BarcodeGenerator;
108+
isVue3: boolean;
109+
isLazyUpdate: Boolean;
110+
plugins: any[];
111+
propKeys: string[];
112+
models: string[];
113+
hasChildDirective: boolean;
114+
tagMapper: {
115+
[key: string]: Object;
116+
};
117+
tagNameMapper: Object;
118+
setProperties(prop: any, muteOnChange: boolean): void;
119+
trigger(eventName: string, eventProp: {
120+
[key: string]: Object;
121+
}, successHandler?: Function): void;
122+
exportAsBase64Image(exportType: Object): Object;
123+
exportImage(filename: string, exportType: Object): void
124+
};
107125

108126
export const BarcodeGeneratorPlugin = {
109127
name: 'ejs-barcodegenerator',

components/barcodegenerator/src/datamatrix-generator/datamatrixgenerator.component.ts

+20-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export let DataMatrixGeneratorComponent: DefineVueComponent<DataMatrixGeneratorM
2727
provide() { return { custom: this.custom } },
2828
data() {
2929
return {
30-
ej2Instance: new DataMatrixGenerator({}) as any,
30+
ej2Instances: new DataMatrixGenerator({}) as any,
3131
propKeys: properties as string[],
3232
models: modelProps as string[],
3333
hasChildDirective: false as boolean,
@@ -103,7 +103,25 @@ export let DataMatrixGeneratorComponent: DefineVueComponent<DataMatrixGeneratorM
103103
}
104104
});
105105

106-
export type DataMatrixGeneratorComponent = InstanceType<typeof DataMatrixGeneratorComponent>;
106+
export type DataMatrixGeneratorComponent = typeof ComponentBase & {
107+
ej2Instances: DataMatrixGenerator;
108+
isVue3: boolean;
109+
isLazyUpdate: Boolean;
110+
plugins: any[];
111+
propKeys: string[];
112+
models: string[];
113+
hasChildDirective: boolean;
114+
tagMapper: {
115+
[key: string]: Object;
116+
};
117+
tagNameMapper: Object;
118+
setProperties(prop: any, muteOnChange: boolean): void;
119+
trigger(eventName: string, eventProp: {
120+
[key: string]: Object;
121+
}, successHandler?: Function): void;
122+
exportAsBase64Image(barcodeExportType: Object): Object;
123+
exportImage(fileName: string, exportType: Object): void
124+
};
107125

108126
export const DataMatrixGeneratorPlugin = {
109127
name: 'ejs-datamatrixgenerator',

components/barcodegenerator/src/qrcode-generator/qrcodegenerator.component.ts

+20-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export let QRCodeGeneratorComponent: DefineVueComponent<QRCodeGeneratorModel> =
2727
provide() { return { custom: this.custom } },
2828
data() {
2929
return {
30-
ej2Instance: new QRCodeGenerator({}) as any,
30+
ej2Instances: new QRCodeGenerator({}) as any,
3131
propKeys: properties as string[],
3232
models: modelProps as string[],
3333
hasChildDirective: false as boolean,
@@ -103,7 +103,25 @@ export let QRCodeGeneratorComponent: DefineVueComponent<QRCodeGeneratorModel> =
103103
}
104104
});
105105

106-
export type QRCodeGeneratorComponent = InstanceType<typeof QRCodeGeneratorComponent>;
106+
export type QRCodeGeneratorComponent = typeof ComponentBase & {
107+
ej2Instances: QRCodeGenerator;
108+
isVue3: boolean;
109+
isLazyUpdate: Boolean;
110+
plugins: any[];
111+
propKeys: string[];
112+
models: string[];
113+
hasChildDirective: boolean;
114+
tagMapper: {
115+
[key: string]: Object;
116+
};
117+
tagNameMapper: Object;
118+
setProperties(prop: any, muteOnChange: boolean): void;
119+
trigger(eventName: string, eventProp: {
120+
[key: string]: Object;
121+
}, successHandler?: Function): void;
122+
exportAsBase64Image(barcodeExportType: Object): Object;
123+
exportImage(filename: string, barcodeExportType: Object): void
124+
};
107125

108126
export const QRCodeGeneratorPlugin = {
109127
name: 'ejs-qrcodegenerator',

components/base/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 25.1.35 (2024-03-15)
5+
## 25.1.37 (2024-03-26)
66

77
### Common
88

components/buttons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-buttons",
3-
"version": "18.64.1",
3+
"version": "25.1.35",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 25.1.35 (2024-03-15)
5+
## 25.1.37 (2024-03-26)
66

77
### DateRangePicker
88

components/charts/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### AccumulationChart
8+
9+
#### Bug Fixes
10+
11+
- `#I564804` - Now, the `textWrap` property in the legend is working properly.
12+
13+
### Chart
14+
15+
#### Bug Fixes
16+
17+
- `#I528508` - The tooltip template div is now added based on the series count, and it renders properly.
18+
- `#I563227` - Now, datalabel does not take the y value in place of a null value, and it renders properly.
19+
- `#I562333` - Now, annotations are rendered corresponding to their series point while enabling the `isIndexed` property
20+
- `#I566633` - Now, the first axis label is properly displayed on the x-axis.
21+
522
## 25.1.35 (2024-03-15)
623

724
### Chart

components/charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-charts",
3-
"version": "20.22.1",
3+
"version": "25.1.35",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/circulargauge/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-circulargauge",
3-
"version": "16.42.4",
3+
"version": "25.1.35",
44
"description": "Essential JS 2 CircularGauge Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I555965` - Now, the overview updated properly without any shadows while dragging html nodes.
12+
- `#I562959` - Now, drawing connector from group node port works properly.
13+
514
## 25.1.35 (2024-03-15)
615

716
### Diagram

components/diagrams/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-diagrams",
3-
"version": "19.18.0",
3+
"version": "25.1.35",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/documenteditor/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I545513` - Added the preservation support for table style property in Document editor.
12+
- `#I548396` - Resolved the page number not refreshed issue while delete page.
13+
- `#I549835` - Resolved the document lagging issue.
14+
- `#I553758` - Resolved the editing issue in the attached document, which contains a chart.
15+
- `#I556874` - Resolved the script error issue when performing undo action on table.
16+
- `#I558460` - Resolved the tab rendering issue in the attached document.
17+
- `#I558529` - Resolved the form field editing issue in read only mode.
18+
- `#I558289` - Resolved the list numbering issue.
19+
- `#I558259` - Resolved the content formatting issue when removing hyperlink.
20+
- `#I559197` - Resolved the drag and drop issue.
21+
- `#I559912` - Resolved the image removed issue when selecting an image and perform enter action.
22+
- `#I561716` - Resolved the duplicate image string added to sfdt issue while drag and drop.
23+
- `#I561052` - Resolved the cursor position issue in mobile mode.
24+
- `#I563837` - Resolved the table overlapping issue in the attached document.
25+
- `#F186648` - Resolved the script error issue while opening a attached document.
26+
- `#F186745` - Resolved the table splitting issue in the merge cell.
27+
528
## 25.1.35 (2024-03-15)
629

730
### DocumentEditor

components/documenteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-documenteditor",
3-
"version": "19.92.0",
3+
"version": "25.1.35",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### MultiSelect
8+
9+
#### Bug Fixes
10+
11+
- `#I560783` - Fixed issue where clearing the searched value would automatically select another value.
12+
- `#I524283` - Fixed issue where popup was not aligned properly when opening on top of the component.
13+
- `#I565659` - Fixed an issue in Multiselect Checkbox mode where the height of the dropdown input would change when selecting and unselecting items.
14+
515
## 25.1.35 (2024-03-15)
616

717
### ComboBox

components/dropdowns/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-dropdowns",
3-
"version": "18.66.23",
3+
"version": "25.1.35",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/filemanager/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-filemanager",
3-
"version": "18.28.1",
3+
"version": "25.1.35",
44
"description": "Essential JS 2 FileManager Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### GanttChart
8+
9+
#### Bug fixes
10+
11+
- `#F187206` - The delete action not working in remote data when `timezone` using in sample.
12+
- `#I566491` - The exception is thrown when the resource ID mapping is empty issue has been fixed.
13+
- `#I565418` - Start date defaulting to incorrect value when remove the start Date in add dialog.
14+
- `#I566632` - Duration calculations are incorrect in edit or add dialog in decimals issue has been fixed.
15+
- `#I565751` - The chart does not refresh when any record is edited by cell editing issue has been fixed.
16+
- `#I566333` - Gantt chart disappeared while insert action with `timlineVirtualization` issue has been fixed.
17+
- `#F186355` - Taskbar template not showing in resource view issue has been fixed.
18+
- `#I562492` - `actionBegin` arguments miss the last record while dragging issue has been fixed.
19+
- `#I556547` - Top and bottom tier shows null when using custom zooming level issue has been fixed.
20+
- `#I566539` - Console error occurs while saving data in add dialog box with validation rule issue has been
21+
- fixed.
22+
- `#I553748` - Timeline dates validated wrongly after cell editing with timeline virtualization enabled issue has been fixed.
23+
- `#I565439` - Work calculations are incorrect for parent task in project view issue has been fixed.
24+
- `#I553710`,`#I565824` - Weekends are not highlighted while `timlineVirtualization` is enabled issue has been fixed.
25+
- `#I565359` - When `allowEditing` is disabled in a resource view, a console error is thrown issue has been fixed.
26+
- `#I560166` - The context menu using "add child" for any task, dependency line validation is not working properly.
27+
28+
- `#I562492` - `actionBegin` arguments miss the last record while dragging issue has been fixed.
29+
530
## 25.1.35 (2024-03-15)
631

732
### GanttChart

components/gantt/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-gantt",
3-
"version": "24.2.7",
3+
"version": "25.1.35",
44
"description": "Essential JS 2 Gantt Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/grids/CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,33 @@
22

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### Grid
8+
9+
#### Bug fixes
10+
11+
- `#I565411` - Resolved the issue where the action complete event was not being triggered in the Infinite Scrolling.
12+
- `#I553471` - The issue of misleading text in Grid toolbar search when focus is lost has been resolved.
13+
- `#I562553` - The `getRows` method returning undefined for all the rows in the `rowTemplate` feature has been resolved.
14+
- `#I559289` - Resolved the issue where the validation message displayed immediately upon opening the dropdown instead of on focus out.
15+
- `#I558905` - The issue of white spaces being shown when the virtual scroll grid's height is set in pixels has been resolved.
16+
- `#I566680` - Resolved the Hierarchy grid export issue when the child grid's enable filter property is enabled.
17+
- `#I540683` - The issue of a script error being thrown when the last column contains auto width and `minWidth` in a Grid with `allowResizing` has been fixed.
18+
- `#I558576` - Resolved the issue where the sorting `popup` did not open when clicking the sort icon has been fixed.
19+
- `#FB51479` - The issue where the cell was automatically saved when opening the dropdown in Batch edit mode has been fixed.
20+
21+
- `#I565411` - Resolved the issue where the action complete event was not being triggered in the Infinite Scrolling.
22+
- `#I553471` - The issue of misleading text in Grid toolbar search when focus is lost has been resolved.
23+
- `#I562553` - The `getRows` method returning undefined for all the rows in the `rowTemplate` feature has been resolved.
24+
- `#I559289` - Resolved the issue where the validation message displayed immediately upon opening the dropdown instead of on focus out.
25+
- `#I558905` - The issue of white spaces being shown when the virtual scroll grid's height is set in pixels has been resolved.
26+
- `#I566680` - Resolved the Hierarchy grid export issue when the child grid's enable filter property is enabled.
27+
- `#I540683` - The issue of a script error being thrown when the last column contains auto width and `minWidth` in a Grid with `allowResizing` has been fixed.
28+
- `#I558576` - Resolved the issue where the sorting `popup` did not open when clicking the sort icon has been fixed.
29+
- `#FB51479` - The issue where the cell was automatically saved when opening the dropdown in Batch edit mode has been fixed.
30+
- `#I561012` - The foreign key column's data not being shown when binding the columns dynamically in Vue has been fixed.
31+
532
## 25.1.35 (2024-03-15)
633

734
### Grid

components/grids/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-grids",
3-
"version": "1.193.11",
3+
"version": "25.1.35",
44
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/heatmap/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 25.1.35 (2024-03-15)
5+
## 25.1.37 (2024-03-26)
66

77
### HeatMap
88

components/imageeditor/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### Image Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I565340` - The issue with "Script error thrown when attempting to reopen a base64 URL using a custom toolbar in mobile mode" has been resolved.
12+
513
## 25.1.35 (2024-03-15)
614

715
### Image Editor

0 commit comments

Comments
 (0)