@base-framework/base 3.6.8 → 3.6.10

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.
@@ -16,10 +16,10 @@ export class DataBinder {
16
16
  */
17
17
  attr: string;
18
18
  /**
19
- * @type {Array<any>} blockedKeys
19
+ * @type {Set<number>} blockedKeys
20
20
  * @protected
21
21
  */
22
- protected blockedKeys: Array<any>;
22
+ protected blockedKeys: Set<number>;
23
23
  /**
24
24
  * @type {object} connections
25
25
  * @protected
@@ -37,7 +37,9 @@ export class DataPubSub {
37
37
  */
38
38
  protected flushIterations: number;
39
39
  /**
40
- * Maximum flush iterations before warning
40
+ * Maximum flush iterations before warning.
41
+ * Set high enough to handle deep reactive cascades in large apps
42
+ * (e.g. route change → multiple dependent data objects updating in sequence).
41
43
  * @type {number}
42
44
  */
43
45
  maxFlushIterations: number;
@@ -27,7 +27,7 @@ export class ElementSource extends TwoWaySource {
27
27
  */
28
28
  attr: string;
29
29
  /**
30
- * @type {function} filter
30
+ * @type {Function|null} filter
31
31
  * @private
32
32
  */
33
33
  private filter;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.6.8",
3
+ "version": "3.6.10",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",