@base-framework/base 3.0.105 → 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,26 +33,6 @@ export class Builder {
|
|
|
33
33
|
* @returns {object}
|
|
34
34
|
*/
|
|
35
35
|
static rebuild(layout: object, ele: object, parent: object): object;
|
|
36
|
-
/**
|
|
37
|
-
* This will build an element or component.
|
|
38
|
-
*
|
|
39
|
-
* @protected
|
|
40
|
-
* @param {object} obj
|
|
41
|
-
* @param {object} container
|
|
42
|
-
* @param {object} [parent] The component adding the layout.
|
|
43
|
-
* @returns {void}
|
|
44
|
-
*/
|
|
45
|
-
protected static buildElement(obj: object, container: object, parent?: object): void;
|
|
46
|
-
/**
|
|
47
|
-
* This will create an element.
|
|
48
|
-
*
|
|
49
|
-
* @protected
|
|
50
|
-
* @param {object} obj
|
|
51
|
-
* @param {object} container
|
|
52
|
-
* @param {object} [parent] The component adding the layout.
|
|
53
|
-
* @returns {void}
|
|
54
|
-
*/
|
|
55
|
-
protected static createElement(obj: object, container: object, parent?: object): void;
|
|
56
36
|
/**
|
|
57
37
|
* This will add the element directives.
|
|
58
38
|
*
|
|
@@ -62,34 +42,6 @@ export class Builder {
|
|
|
62
42
|
* @returns {void}
|
|
63
43
|
*/
|
|
64
44
|
static setDirectives(ele: object, directives: any[], parent: object): void;
|
|
65
|
-
/**
|
|
66
|
-
* This will handle an attr directive.
|
|
67
|
-
*
|
|
68
|
-
* @protected
|
|
69
|
-
* @param {object} ele
|
|
70
|
-
* @param {object} attrDirective
|
|
71
|
-
* @param {object} parent
|
|
72
|
-
* @returns {void}
|
|
73
|
-
*/
|
|
74
|
-
protected static handleDirective(ele: object, attrDirective: object, parent: object): void;
|
|
75
|
-
/**
|
|
76
|
-
* This will cache an element ot the parent.
|
|
77
|
-
*
|
|
78
|
-
* @param {object} ele
|
|
79
|
-
* @param {object} propName
|
|
80
|
-
* @param {object} parent
|
|
81
|
-
*/
|
|
82
|
-
static cache(ele: object, propName: object, parent: object): void;
|
|
83
|
-
/**
|
|
84
|
-
* This will create a component.
|
|
85
|
-
*
|
|
86
|
-
* @protected
|
|
87
|
-
* @param {object} obj
|
|
88
|
-
* @param {object} container
|
|
89
|
-
* @param {object} parent
|
|
90
|
-
* @returns {void}
|
|
91
|
-
*/
|
|
92
|
-
protected static createComponent(obj: object, container: object, parent: object): void;
|
|
93
45
|
/**
|
|
94
46
|
* This will create a node.
|
|
95
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
|
*
|