@base-framework/base 3.0.435 → 3.0.437
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.
|
@@ -55,6 +55,10 @@ export class Unit {
|
|
|
55
55
|
* @member {?Unit} parent
|
|
56
56
|
*/
|
|
57
57
|
parent: any;
|
|
58
|
+
/**
|
|
59
|
+
* @member {?string} unitType
|
|
60
|
+
*/
|
|
61
|
+
unitType: string;
|
|
58
62
|
/**
|
|
59
63
|
* @member {array} children
|
|
60
64
|
*/
|
|
@@ -69,10 +73,6 @@ export class Unit {
|
|
|
69
73
|
* @member {?object} container
|
|
70
74
|
*/
|
|
71
75
|
container: any;
|
|
72
|
-
/**
|
|
73
|
-
* @member {?string} unitType
|
|
74
|
-
*/
|
|
75
|
-
unitType: string;
|
|
76
76
|
/**
|
|
77
77
|
* This will setup the component number and unique
|
|
78
78
|
* instance id for the component elements.
|