@base-framework/base 3.0.343 → 3.0.344
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.
|
@@ -51,9 +51,10 @@ export class Component extends Unit {
|
|
|
51
51
|
*
|
|
52
52
|
* @param {object} data
|
|
53
53
|
* @param {object} state
|
|
54
|
+
* @param {object} previousLayout
|
|
54
55
|
* @returns {void}
|
|
55
56
|
*/
|
|
56
|
-
resumeScope(data: object, state: object): void;
|
|
57
|
+
resumeScope(data: object, state: object, previousLayout: object): void;
|
|
57
58
|
/**
|
|
58
59
|
* This will initialize the component.
|
|
59
60
|
*
|
|
@@ -199,7 +199,7 @@ export class Unit {
|
|
|
199
199
|
* @param {object} newLayout
|
|
200
200
|
* @returns {void}
|
|
201
201
|
*/
|
|
202
|
-
|
|
202
|
+
applyChildrenScope(oldLayout: object, newLayout: object): void;
|
|
203
203
|
/**
|
|
204
204
|
* This will create the component layout.
|
|
205
205
|
*
|