Skip to content

Commit 1b1f508

Browse files
author
pipeline
committed
v29.1.33 is released
1 parent 673840d commit 1b1f508

File tree

2,812 files changed

+67867
-286761
lines changed

Some content is hidden

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

2,812 files changed

+67867
-286761
lines changed

controls/barcodegenerator/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 28.2.12 (2025-03-19)
5+
## 29.1.33 (2025-03-25)
66

77
### Barcode
88

controls/barcodegenerator/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-contr
7878

7979
## License and copyright
8080

81-
> This is a commercial product and requires a paid license for possession or use. Syncfusion<sup>®</sup> licensed software, including this component, is subject to the terms and conditions of Syncfusion<sup>®</sup> [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 80+ [JavaScript UI controls](https://www.syncfusion.com/javascript-ui-controls), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials).
81+
> This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 80+ [JavaScript UI controls](https://www.syncfusion.com/javascript-ui-controls), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials).
8282
8383
> A [free community license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
8484
8585
See [LICENSE FILE](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/license?utm_source=npm&utm_campaign=barcode) for more info.
8686

87-
&copy; Copyright 2022 Syncfusion<sup>®</sup> Inc. All Rights Reserved. The Syncfusion<sup>®</sup> Essential Studio<sup>®</sup> license and copyright applies to this distribution.
87+
&copy; Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
import { enableRipple } from '@syncfusion/ej2-base';
2+
enableRipple(true);
3+
import {
4+
BarcodeGenerator, ValidateEvent
5+
} from '../src/barcode/index';
6+
7+
document.getElementById('render').addEventListener('click', renderGrid);
8+
document.getElementById('destroy').addEventListener('click', destoryGrid);
9+
10+
11+
let barcode: BarcodeGenerator;
12+
function renderGrid(): void {
13+
barcode = new BarcodeGenerator({
14+
width: '200px',
15+
height: '150px',
16+
mode: 'SVG',
17+
type: 'Codabar',
18+
value: '123456789',
19+
margin: { left: 30, right: 30, top: 30, bottom: 30 },
20+
displayText: {
21+
text: 'Codabar',
22+
margin: { top: 30, bottom: 30, left: 30, right: 30 }
23+
},
24+
25+
});
26+
barcode.appendTo('#element');
27+
};
28+
29+
30+
function destoryGrid(): void {
31+
document.getElementById('render').removeEventListener('click', renderGrid);
32+
document.getElementById('destroy').removeEventListener('click', destoryGrid);
33+
if (barcode && !barcode.isDestroyed) {
34+
barcode.destroy();
35+
}
36+
37+
}

controls/barcodegenerator/src/barcode/barcode.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ export class BarcodeGenerator extends Component<HTMLElement> implements INotifyP
209209
this.barcodeCanvas.setAttribute('height', String(this.element.offsetHeight));
210210
break;
211211
case 'backgroundColor':
212-
this.barcodeCanvas.setAttribute('style', 'background:' + newProp.backgroundColor);
212+
this.barcodeCanvas.style.background = newProp.backgroundColor;
213213
break;
214214
case 'mode':
215215
this.initialize();

controls/barcodegenerator/src/barcode/rendering/svg-renderer.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export class BarcodeSVGRenderering implements IBarcodeRenderer {
1919
// eslint-disable-next-line
2020
public renderRootElement(attribute: Object, backGroundColor: string, ): HTMLElement {
2121
const canvasObj: HTMLElement = createSvgElement('svg', attribute) as HTMLElement;
22-
canvasObj.setAttribute('style', 'background:' + backGroundColor);
22+
canvasObj.style.background = backGroundColor;
2323
return canvasObj;
2424
}
2525

@@ -42,7 +42,7 @@ export class BarcodeSVGRenderering implements IBarcodeRenderer {
4242
rect.setAttribute('width', attribute.width.toString());
4343
rect.setAttribute('height', attribute.height.toString());
4444
rect.setAttribute('fill', attribute.color);
45-
rect.setAttribute('style', 'shape-rendering: crispEdges');
45+
(rect.style as any)['shapeRendering'] = 'crispEdges';
4646
svg.appendChild(rect);
4747
return svg;
4848
}

controls/barcodegenerator/src/barcode/utility/dom-util.ts

+21-4
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,9 @@ export function measureText(textContent: BaseAttributes): Size {
5858
const svg: SVGElement = window[`${measureElement}`].children[1];
5959
const text: SVGTextElement = getChildNode(svg)[0] as SVGTextElement;
6060
text.textContent = textContent.string;
61-
text.setAttribute('style', 'font-size:' + textContent.stringSize + 'px; font-family:'
62-
+ textContent.fontStyle + ';font-weight:');
61+
text.style.fontSize = textContent.stringSize + 'px';
62+
text.style.fontFamily = textContent.fontStyle;
63+
text.style.fontWeight = '';
6364
const bBox: Size = new Size(0, 0);
6465
bBox.width = text.getBBox().width;
6566
bBox.height = text.getBBox().height;
@@ -77,10 +78,26 @@ export function measureText(textContent: BaseAttributes): Size {
7778
* @private
7879
*/
7980
// eslint-disable-next-line
80-
export function setAttribute(element: HTMLElement | SVGElement, attributes: Object): void {
81+
export function setAttribute(element: HTMLElement | SVGElement, attributes: { [key: string]: any }): void {
8182
const keys: string[] = Object.keys(attributes);
8283
for (let i: number = 0; i < keys.length; i++) {
83-
element.setAttribute(keys[parseInt(i.toString(), 10)], attributes[keys[parseInt(i.toString(), 10)]]);
84+
keys.forEach((key: string) => {
85+
// eslint-disable-next-line security/detect-object-injection
86+
const value: string | undefined = attributes[key];
87+
if (key === 'style' && typeof value === 'string') {
88+
// Handle `style` attributes specifically by splitting and setting them directly
89+
const styleProperties: string[] = value.split(';');
90+
styleProperties.forEach((property: string) => {
91+
const [propName, propValue] = property.split(':');
92+
if (propName && propValue) {
93+
(element.style as CSSStyleDeclaration).setProperty(propName.trim(), propValue.trim());
94+
}
95+
});
96+
} else {
97+
// Set other attributes normally
98+
element.setAttribute(key, value);
99+
}
100+
});
84101
}
85102
}
86103

controls/barcodegenerator/src/datamatrix/datamatrix.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ export class DataMatrixGenerator extends Component<HTMLElement> implements INoti
273273
this.barcodeCanvas.setAttribute('width', String(this.element.offsetWidth));
274274
break;
275275
case 'backgroundColor':
276-
this.barcodeCanvas.setAttribute('style', 'background:' + newProp.backgroundColor);
276+
this.barcodeCanvas.style.background = newProp.backgroundColor;
277277
break;
278278
}
279279

controls/barcodegenerator/src/qrcode/qrcode.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ export class QRCodeGenerator extends Component<HTMLElement> implements INotifyPr
362362
this.barcodeCanvas.setAttribute('height', String(this.element.offsetHeight));
363363
break;
364364
case 'backgroundColor':
365-
this.barcodeCanvas.setAttribute('style', 'background:' + newProp.backgroundColor);
365+
this.barcodeCanvas.style.background = newProp.backgroundColor;
366366
break;
367367
case 'mode':
368368
this.initialize();

controls/base/CHANGELOG.md

-32
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,6 @@
22

33
## [Unreleased]
44

5-
## 28.2.12 (2025-03-19)
6-
7-
### Common
8-
9-
#### Bug Fixes
10-
11-
- `#I701045` - Resolved the security vulnerability in the `setValue` method of the base package.
12-
13-
## 28.2.9 (2025-03-04)
14-
15-
### Common
16-
17-
#### Bug Fixes
18-
19-
- `#I678051` - Resolved trailing zeros issue in custom number format.
20-
21-
## 28.2.5 (2025-02-11)
22-
23-
### Common
24-
25-
#### Bug Fixes
26-
27-
- `#I664843` - Resolved the issue with `formatDate` method incorrectly calculates the week number.
28-
29-
## 28.2.4 (2025-02-04)
30-
31-
### Common
32-
33-
#### Bug Fixes
34-
35-
- `#I664843` - Resolved the issue with `formatDate` method incorrectly calculates the week number.
36-
375
## 23.2.6 (2023-11-28)
386

397
### Common

controls/base/ReadMe.md

+13-10
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
# ej2-base
44

5-
A common package of Essential JS 2 which contains base libraries, methods and class definitions.
5+
A common package of Essential<sup>®</sup> JS 2 which contains base libraries, methods and class definitions.
66

7-
> This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license, you can purchase [here](https://www.syncfusion.com/sales/products) or start a free 30-day trial [here](https://www.syncfusion.com/account/manage-trials/start-trials).
7+
> This is a commercial product and requires a paid license for possession or use. Syncfusion<sup>®</sup> licensed software, including this component, is subject to the terms and conditions of Syncfusion<sup>®</sup> [EULA](https://www.syncfusion.com/eula/es/). To acquire a license, you can purchase [here](https://www.syncfusion.com/sales/products) or start a free 30-day trial [here](https://www.syncfusion.com/account/manage-trials/start-trials).
88
>
99
> A free [community license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
1010
@@ -26,7 +26,7 @@ npm install @syncfusion/ej2-base
2626

2727
### Lightweight and user friendly
2828

29-
The entire Essential JS 2 framework is built from scratch to be lightweight and modular. Its footprint can be reduced further by including only the specific components and features your application requires.
29+
The entire Essential<sup>®</sup> JS 2 framework is built from scratch to be lightweight and modular. Its footprint can be reduced further by including only the specific components and features your application requires.
3030

3131
### Modular architecture
3232

@@ -38,7 +38,7 @@ Performance is critical for delivering a good user experience. We ensure that al
3838

3939
### Responsive and touch friendly
4040

41-
All Essential JS 2 controls are touch friendly and render adaptively based on the device they are on to provide optimal usage experience on phones, tablets and desktops.
41+
All Essential<sup>®</sup> JS 2 controls are touch friendly and render adaptively based on the device they are on to provide optimal usage experience on phones, tablets and desktops.
4242

4343
### Stunning built-in themes
4444

@@ -54,10 +54,13 @@ With our commitment to at least four major updates per year, you receive the mos
5454

5555
## Supported Frameworks
5656

57-
The Essential JS 2 is also offered in following list of frameworks.
57+
The Essential<sup>®</sup> JS 2 is also offered in following list of frameworks.
5858

59-
| [<img src="https://ej2.syncfusion.com/github/images/angular-new.svg" height="50" />](https://www.syncfusion.com/products/angular?utm_source=npm&utm_campaign=ej2-base)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Angular](https://www.syncfusion.com/products/angular?utm_source=npm&utm_campaign=ej2-base)&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/react.svg" height="50" />](https://www.syncfusion.com/products/react?utm_source=npm&utm_campaign=ej2-base)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[React](https://www.syncfusion.com/products/react?utm_source=npm&utm_campaign=ej2-base)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/vue.svg" height="50" />](https://www.syncfusion.com/products/vue?utm_source=npm&utm_campaign=ej2-base)<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Vue](https://www.syncfusion.com/products/vue?utm_source=npm&utm_campaign=ej2-base)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netcore.svg" height="50" />](https://www.syncfusion.com/products/aspnetcore?utm_source=npm&utm_campaign=ej2-base)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;Core](https://www.syncfusion.com/products/aspnetcore?utm_source=npm&utm_campaign=ej2-base)&nbsp;&nbsp; | [<img src="https://ej2.syncfusion.com/github/images/netmvc.svg" height="50" />](https://www.syncfusion.com/products/aspnetmvc?utm_source=npm&utm_campaign=ej2-base)<br/>&nbsp;&nbsp;[ASP.NET&nbsp;MVC](https://www.syncfusion.com/products/aspnetmvc?utm_source=npm&utm_campaign=ej2-base)&nbsp;&nbsp; |
60-
| :-----: | :-----: | :-----: | :-----: | :-----: |
59+
* [Angular](https://www.syncfusion.com/products/angular?utm_source=npm&utm_campaign=ej2-base)
60+
* [React](https://www.syncfusion.com/products/react?utm_source=npm&utm_campaign=ej2-base)
61+
* [Vue.js](https://www.syncfusion.com/products/vue?utm_source=npm&utm_campaign=ej2-base)
62+
* [ASP.NET Core](https://www.syncfusion.com/products/aspnetcore?utm_source=npm&utm_campaign=ej2-base)
63+
* [ASP.NET MVC](https://www.syncfusion.com/products/aspnetmvc?utm_source=npm&utm_campaign=ej2-base)
6164

6265
## Showcase Applications
6366

@@ -84,7 +87,7 @@ The Essential JS 2 is also offered in following list of frameworks.
8487

8588
Product support is available for through following mediums.
8689

87-
* Creating incident in Syncfusion [Direct-trac](https://www.syncfusion.com/support/directtrac/incidents?utm_source=npm&utm_campaign=ej2-base) support system or [Community forum](https://www.syncfusion.com/forums/essential-js2?utm_source=npm&utm_campaign=ej2-base).
90+
* Creating incident in Syncfusion<sup>®</sup> [Direct-trac](https://www.syncfusion.com/support/directtrac/incidents?utm_source=npm&utm_campaign=ej2-base) support system or [Community forum](https://www.syncfusion.com/forums/essential-js2?utm_source=npm&utm_campaign=ej2-base).
8891
* New [GitHub issue](https://github.com/syncfusion/ej2-javascript-ui-controls/issues/new).
8992
* Ask your query in [Stack Overflow](https://stackoverflow.com/) with tag `syncfusion` and `ej2`.
9093

@@ -95,5 +98,5 @@ Product support is available for through following mediums.
9598

9699
Check the changelog [here](https://ej2.syncfusion.com/documentation/release-notes/index/?utm_source=npm&utm_campaign=ej2-base).
97100

98-
© Copyright 2024 Syncfusion, Inc. All Rights Reserved.
99-
The Syncfusion Essential Studio license and copyright applies to this distribution.
101+
© Copyright 2024 Syncfusion<sup>®</sup> Inc. All Rights Reserved.
102+
The Syncfusion<sup>®</sup> Essential<sup>®</sup> Studio license and copyright applies to this distribution.

controls/base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-base",
3-
"version": "28.2.9",
3+
"version": "18.92.0",
44
"description": "A common package of Essential JS 2 base libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)