@base-framework/base 3.0.326 → 3.0.328

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.
@@ -149,12 +149,12 @@ export class ModelService {
149
149
  *
150
150
  * @param {string} instanceParams
151
151
  * @param {function} callBack
152
- * @param {number} start
153
- * @param {number} count
152
+ * @param {number} offset
153
+ * @param {number} limit
154
154
  * @param {string} filter
155
155
  * @returns {object}
156
156
  */
157
- all(instanceParams: string, callBack: Function, start: number, count: number, filter: string): object;
157
+ all(instanceParams: string, callBack: Function, offset: number, limit: number, filter: string): object;
158
158
  /**
159
159
  * This will get the url.
160
160
  *
@@ -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.328",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",