@base-framework/base 3.0.326 → 3.0.327

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.
@@ -15,15 +15,33 @@ export class Render {
15
15
  * @returns {*} The layout result.
16
16
  */
17
17
  build(obj: object, container?: object, parent?: object): any;
18
+ /**
19
+ * This will set up the component.
20
+ *
21
+ * @protected
22
+ * @param {object} component
23
+ * @param {object} container
24
+ * @param {object} parent
25
+ * @returns {void}
26
+ */
27
+ protected setupComponent(component: object, container: object, parent: object): void;
28
+ /**
29
+ * This will build a component.
30
+ *
31
+ * @protected
32
+ * @param {object} component
33
+ * @returns {*}
34
+ */
35
+ protected buildComponent(component: object): any;
18
36
  /**
19
37
  * This will create a component.
20
38
  *
21
- * @param {object} obj
39
+ * @param {object} component
22
40
  * @param {object} container
23
41
  * @param {object} parent
24
42
  * @returns {*} the build result.
25
43
  */
26
- createComponent(obj: object, container: object, parent: object): any;
44
+ createComponent(component: object, container: object, parent: object): any;
27
45
  /**
28
46
  * This will add the element directives.
29
47
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.0.326",
3
+ "version": "3.0.327",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",