@base-framework/base 3.0.107 → 3.0.108
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.
|
@@ -33,6 +33,15 @@ export class Builder {
|
|
|
33
33
|
* @returns {object}
|
|
34
34
|
*/
|
|
35
35
|
static rebuild(layout: object, ele: object, parent: object): object;
|
|
36
|
+
/**
|
|
37
|
+
* This will add the element directives.
|
|
38
|
+
*
|
|
39
|
+
* @param {object} ele
|
|
40
|
+
* @param {array} directives
|
|
41
|
+
* @param {object} parent
|
|
42
|
+
* @returns {void}
|
|
43
|
+
*/
|
|
44
|
+
static setDirectives(ele: object, directives: any[], parent: object): void;
|
|
36
45
|
/**
|
|
37
46
|
* This will create a node.
|
|
38
47
|
*
|
|
@@ -26,15 +26,6 @@ export class BrowserRender extends Render {
|
|
|
26
26
|
* @returns {void}
|
|
27
27
|
*/
|
|
28
28
|
protected createElement(obj: object, container: object, parent?: object): void;
|
|
29
|
-
/**
|
|
30
|
-
* This will add the element directives.
|
|
31
|
-
*
|
|
32
|
-
* @param {object} ele
|
|
33
|
-
* @param {array} directives
|
|
34
|
-
* @param {object} parent
|
|
35
|
-
* @returns {void}
|
|
36
|
-
*/
|
|
37
|
-
setDirectives(ele: object, directives: any[], parent: object): void;
|
|
38
29
|
/**
|
|
39
30
|
* This will handle an attr directive.
|
|
40
31
|
*
|
|
@@ -24,6 +24,15 @@ export class Render {
|
|
|
24
24
|
* @returns {*} the build result.
|
|
25
25
|
*/
|
|
26
26
|
createComponent(obj: object, container: object, parent: object): any;
|
|
27
|
+
/**
|
|
28
|
+
* This will add the element directives.
|
|
29
|
+
*
|
|
30
|
+
* @param {object} ele
|
|
31
|
+
* @param {array} directives
|
|
32
|
+
* @param {object} parent
|
|
33
|
+
* @returns {void}
|
|
34
|
+
*/
|
|
35
|
+
setDirectives(ele: object, directives: any[], parent: object): void;
|
|
27
36
|
/**
|
|
28
37
|
* This will remove all the children from an element.
|
|
29
38
|
*
|