@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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.7.21",
3
+ "version": "3.7.22",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",