Skip to content

Commit ff2a59e

Browse files
author
pipeline
committed
v29.1.35 is released
1 parent 1b1f508 commit ff2a59e

File tree

722 files changed

+127230
-1720
lines changed

Some content is hidden

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

722 files changed

+127230
-1720
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-
## 29.1.33 (2025-03-25)
5+
## 29.1.35 (2025-04-01)
66

77
### Barcode
88

controls/base/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 29.1.35 (2025-04-01)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I696647` - Resolved null cases in the `getComponent` method in the base library.
12+
513
## 23.2.6 (2023-11-28)
614

715
### Common

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": "18.92.0",
3+
"version": "29.1.33",
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",

controls/base/releasenotes/README.md

-183
This file was deleted.

controls/base/src/base.ts

+12-10
Original file line numberDiff line numberDiff line change
@@ -310,16 +310,18 @@ export function getComponent<T>(elem: HTMLElement | string, comp: string | any |
310310
let instance: T;
311311
let i: number;
312312
const ele: HTMLElement = typeof elem === 'string' ? document.getElementById(elem) : elem;
313-
for (i = 0; i < (<DomElements>(ele as HTMLElement)).ej2_instances.length; i++) {
314-
instance = <T>(ele as DomElements).ej2_instances[parseInt(i.toString(), 10)];
315-
if (typeof comp === 'string') {
316-
const compName: string = (instance as { getModuleName: () => string } & T).getModuleName();
317-
if (comp === compName) {
318-
return instance;
319-
}
320-
} else {
321-
if (instance instanceof <any>comp) {
322-
return instance;
313+
if (ele && (<DomElements>(ele as HTMLElement)).ej2_instances) {
314+
for (i = 0; i < (<DomElements>(ele as HTMLElement)).ej2_instances.length; i++) {
315+
instance = <T>(ele as DomElements).ej2_instances[parseInt(i.toString(), 10)];
316+
if (typeof comp === 'string') {
317+
const compName: string = (instance as { getModuleName: () => string } & T).getModuleName();
318+
if (comp === compName) {
319+
return instance;
320+
}
321+
} else {
322+
if (instance instanceof <any>comp) {
323+
return instance;
324+
}
323325
}
324326
}
325327
}

0 commit comments

Comments
 (0)