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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 20 additions & 2 deletions
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

Lines changed: 20 additions & 2 deletions
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

Lines changed: 20 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 17 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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",

0 commit comments

Comments
 (0)