@base-framework/base 3.7.11 → 3.7.13

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.
@@ -1,3 +1,4 @@
1
+ export function convertSettings(settings: object, component: object): object;
1
2
  export function Jot(layout: object | Function, extend?: typeof Component): {
2
3
  new (...args: any[]): Component;
3
4
  };
@@ -164,6 +164,10 @@ export class DataPubSub {
164
164
  * Publish a message immediately without batching.
165
165
  * This is the original synchronous publish logic.
166
166
  *
167
+ * Individual subscriber errors are caught so one failing
168
+ * callback cannot prevent other subscribers from receiving
169
+ * updates or break the flush cycle.
170
+ *
167
171
  * @param {string} msg
168
172
  * @param {...any} args
169
173
  * @returns {void}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.7.11",
3
+ "version": "3.7.13",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",