@superblocksteam/library-shared 2.0.21-next.0 → 2.0.21-next.1
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.
|
@@ -21,15 +21,15 @@ export type PropertyForData<T extends DataType> = {
|
|
|
21
21
|
description: string;
|
|
22
22
|
};
|
|
23
23
|
/**
|
|
24
|
-
* By default, all your properties are readable from anywhere in Superblocks using dot notation
|
|
25
|
-
* (e.g. `myComponent.myProperty`). If you want to
|
|
26
|
-
* set this to
|
|
27
|
-
* @default
|
|
24
|
+
* By default, all your properties are not readable from anywhere in Superblocks using dot notation
|
|
25
|
+
* (e.g. `myComponent.myProperty`). If you want to show a property from the outside world,
|
|
26
|
+
* set this to true
|
|
27
|
+
* @default false
|
|
28
28
|
*/
|
|
29
29
|
isExternallyReadable?: boolean;
|
|
30
30
|
/**
|
|
31
|
-
* By default, all properties can
|
|
32
|
-
* @default
|
|
31
|
+
* By default, all properties can't be used with Set Component Property and Reset Component to Default.
|
|
32
|
+
* @default false
|
|
33
33
|
**/
|
|
34
34
|
isExternallySettable?: boolean;
|
|
35
35
|
/** if prop in meta section */
|