@base-framework/base 3.5.67 → 3.5.69
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 +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";
|