@base-framework/base 3.7.20 → 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.
|
@@ -60,6 +60,22 @@ export class Component extends Unit {
|
|
|
60
60
|
id: string;
|
|
61
61
|
}): void;
|
|
62
62
|
stateHelper: any;
|
|
63
|
+
/**
|
|
64
|
+
* This will refresh the persisted data with fresh
|
|
65
|
+
* prop-derived values from setData().
|
|
66
|
+
*
|
|
67
|
+
* @protected
|
|
68
|
+
* @returns {void}
|
|
69
|
+
*/
|
|
70
|
+
protected _refreshData(): void;
|
|
71
|
+
/**
|
|
72
|
+
* This will refresh the persisted context data with
|
|
73
|
+
* fresh values from the parent context.
|
|
74
|
+
*
|
|
75
|
+
* @protected
|
|
76
|
+
* @returns {void}
|
|
77
|
+
*/
|
|
78
|
+
protected _refreshContextData(): void;
|
|
63
79
|
/**
|
|
64
80
|
* This will setup the state target.
|
|
65
81
|
*
|
|
@@ -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;
|