@base-framework/base 3.0.343 → 3.0.345

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
- _applyChildrenScope(oldLayout: object, newLayout: object): void;
202
+ applyChildrenScope(oldLayout: object, newLayout: object): void;
203
203
  /**
204
204
  * This will create the component layout.
205
205
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.0.343",
3
+ "version": "3.0.345",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",