@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
- export function Cloak(props: any): typeof import("./component.js").Component | null;
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";
@@ -59,10 +59,6 @@ export class Unit {
59
59
  * @type {?string} unitType
60
60
  */
61
61
  unitType: string | null;
62
- /**
63
- * @type {boolean} transparent
64
- */
65
- transparent: boolean;
66
62
  /**
67
63
  * @type {Array<any>} cached
68
64
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.5.67",
3
+ "version": "3.5.69",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",