@base-framework/base 3.0.419 → 3.0.420

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,2 +1,9 @@
1
- export function Jot(layout: object | Function, extend?: typeof Component): typeof Component | null;
1
+ /**
2
+ * Create a Jot component class dynamically.
3
+ *
4
+ * @param {(object|function)} layout
5
+ * @param {typeof Component} [extend=Component]
6
+ * @returns {(typeof Component|null)}
7
+ */
8
+ export function Jot(layout: (object | Function), extend?: typeof Component): (typeof Component | null);
2
9
  import { Component } from './component.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.0.419",
3
+ "version": "3.0.420",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",