@base-framework/base 3.5.33 → 3.5.35
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.
|
@@ -59,6 +59,10 @@ export class Unit {
|
|
|
59
59
|
* @member {?string} unitType
|
|
60
60
|
*/
|
|
61
61
|
unitType: string;
|
|
62
|
+
/**
|
|
63
|
+
* @member {array} cached
|
|
64
|
+
*/
|
|
65
|
+
cached: any[];
|
|
62
66
|
/**
|
|
63
67
|
* @member {array} children
|
|
64
68
|
*/
|
|
@@ -268,6 +272,14 @@ export class Unit {
|
|
|
268
272
|
* @returns {string}
|
|
269
273
|
*/
|
|
270
274
|
getId(id?: string): string;
|
|
275
|
+
/**
|
|
276
|
+
* This will cache an element to the component.
|
|
277
|
+
*
|
|
278
|
+
* @param {object} ele
|
|
279
|
+
* @param {string} propName
|
|
280
|
+
* @returns {void}
|
|
281
|
+
*/
|
|
282
|
+
cacheEle(ele: object, propName: string): void;
|
|
271
283
|
/**
|
|
272
284
|
* This will initialize the component.
|
|
273
285
|
*
|
|
@@ -47,13 +47,13 @@ export class BrowserRender extends Render {
|
|
|
47
47
|
*/
|
|
48
48
|
protected handleDirective(ele: object, attrDirective: object, parent: object): void;
|
|
49
49
|
/**
|
|
50
|
-
* This will cache an element
|
|
50
|
+
* This will cache an element to the parent.
|
|
51
51
|
*
|
|
52
52
|
* @param {object} ele
|
|
53
|
-
* @param {
|
|
53
|
+
* @param {string} propName
|
|
54
54
|
* @param {object} parent
|
|
55
55
|
*/
|
|
56
|
-
cache(ele: object, propName:
|
|
56
|
+
cache(ele: object, propName: string, parent: object): void;
|
|
57
57
|
/**
|
|
58
58
|
* This will create a node.
|
|
59
59
|
*
|