@base-framework/base 3.7.31 → 3.7.33

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,19 @@ export class Component extends Unit {
60
60
  id: string;
61
61
  }): void;
62
62
  stateHelper: any;
63
+ /**
64
+ * This will resume the data by preferring the fresh data
65
+ * instance from setData(). This preserves closure references
66
+ * (e.g. from atoms with { data: localVar }) and ensures
67
+ * fresh prop-derived values take priority over stale
68
+ * persisted values. Falls back to persisted data when
69
+ * setData() returns nothing.
70
+ *
71
+ * @protected
72
+ * @param {object|null} persistedData
73
+ * @returns {void}
74
+ */
75
+ protected _resumeData(persistedData: object | null): void;
63
76
  /**
64
77
  * This will refresh the persisted data with fresh
65
78
  * prop-derived values from setData().
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.7.31",
3
+ "version": "3.7.33",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",