@base-framework/base 3.5.62 → 3.5.64
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.
|
@@ -1,13 +1 @@
|
|
|
1
|
-
|
|
2
|
-
* Cloak Component
|
|
3
|
-
*
|
|
4
|
-
* This will create a component that can accept data from a parent component
|
|
5
|
-
* or it will use the parent's data or context data to set a local context
|
|
6
|
-
* to act as if it's data scope is the parent component.
|
|
7
|
-
*
|
|
8
|
-
* @type {typeof Component}
|
|
9
|
-
*/
|
|
10
|
-
export class CloakComponent extends Component {
|
|
11
|
-
}
|
|
12
|
-
export function Cloak(props: any): typeof Component | null;
|
|
13
|
-
import { Component } from "./component.js";
|
|
1
|
+
export function Cloak(props: any): typeof import("./component.js").Component | null;
|
|
@@ -59,6 +59,10 @@ export class Unit {
|
|
|
59
59
|
* @type {?string} unitType
|
|
60
60
|
*/
|
|
61
61
|
unitType: string | null;
|
|
62
|
+
/**
|
|
63
|
+
* @type {boolean} transparent
|
|
64
|
+
*/
|
|
65
|
+
transparent: boolean;
|
|
62
66
|
/**
|
|
63
67
|
* @type {Array<any>} cached
|
|
64
68
|
*/
|
|
@@ -116,6 +120,8 @@ export class Unit {
|
|
|
116
120
|
protected setupProps(props?: object): void;
|
|
117
121
|
/**
|
|
118
122
|
* This will get the child scope instance of the component.
|
|
123
|
+
* If the component is transparent, children see through
|
|
124
|
+
* to the parent scope instead.
|
|
119
125
|
*
|
|
120
126
|
* @returns {object}
|
|
121
127
|
*/
|