@base-framework/base 3.7.21 → 3.7.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/base.js +1 -1
- package/dist/base.js.map +3 -3
- package/dist/types/modules/html/html.d.ts +3 -0
- package/package.json +1 -1
|
@@ -76,6 +76,9 @@ export class Html {
|
|
|
76
76
|
/**
|
|
77
77
|
* This will remove an elements data.
|
|
78
78
|
*
|
|
79
|
+
* Uses an iterative depth-first traversal instead of recursion
|
|
80
|
+
* to avoid call-stack overhead on deep DOM trees.
|
|
81
|
+
*
|
|
79
82
|
* @param {object} ele
|
|
80
83
|
*/
|
|
81
84
|
static removeElementData(ele: object): void;
|