@dcl/playground-assets 7.15.3-20090667358.commit-8e697e3 → 7.15.3-20442422857.commit-bc61a50
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.
- package/dist/alpha.d.ts +8 -0
- package/dist/beta.d.ts +8 -0
- package/dist/index.bundled.d.ts +8 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +8 -0
- package/etc/playground-assets.api.json +27 -0
- package/etc/playground-assets.api.md +1 -0
- package/package.json +4 -4
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/sdk",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "7.15.3-
|
|
4
|
+
"version": "7.15.3-20442422857.commit-bc61a50",
|
|
5
5
|
"author": "Decentraland",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@dcl/ecs": "file:../ecs",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
},
|
|
36
36
|
"types": "./index.d.ts",
|
|
37
37
|
"typings": "./index.d.ts",
|
|
38
|
-
"commit": "
|
|
38
|
+
"commit": "bc61a5032f605f1eb524e2b0394f4d6ae47aa997"
|
|
39
39
|
}
|
|
@@ -6190,6 +6190,14 @@ export declare namespace PBVirtualCamera {
|
|
|
6190
6190
|
export declare interface PBVisibilityComponent {
|
|
6191
6191
|
/** default=true */
|
|
6192
6192
|
visible?: boolean | undefined;
|
|
6193
|
+
/**
|
|
6194
|
+
* Propagation follows certain rules:
|
|
6195
|
+
* - Any own visibility component takes priority
|
|
6196
|
+
* - If no own visibility component, visibility is determined by visibility of the nearest parent with propagate = true
|
|
6197
|
+
* - If no own component and no parent with propagate = true, visibility is "visible"
|
|
6198
|
+
* - Visibility is always updated, whenever hierarchy, parent component or own component changes
|
|
6199
|
+
*/
|
|
6200
|
+
propagateToChildren?: boolean | undefined;
|
|
6193
6201
|
}
|
|
6194
6202
|
|
|
6195
6203
|
/**
|
|
@@ -61023,6 +61023,33 @@
|
|
|
61023
61023
|
"name": "PBVisibilityComponent",
|
|
61024
61024
|
"preserveMemberOrder": false,
|
|
61025
61025
|
"members": [
|
|
61026
|
+
{
|
|
61027
|
+
"kind": "PropertySignature",
|
|
61028
|
+
"canonicalReference": "@dcl/playground-assets!PBVisibilityComponent#propagateToChildren:member",
|
|
61029
|
+
"docComment": "/**\n * Propagation follows certain rules: - Any own visibility component takes priority - If no own visibility component, visibility is determined by visibility of the nearest parent with propagate = true - If no own component and no parent with propagate = true, visibility is \"visible\" - Visibility is always updated, whenever hierarchy, parent component or own component changes\n */\n",
|
|
61030
|
+
"excerptTokens": [
|
|
61031
|
+
{
|
|
61032
|
+
"kind": "Content",
|
|
61033
|
+
"text": "propagateToChildren?: "
|
|
61034
|
+
},
|
|
61035
|
+
{
|
|
61036
|
+
"kind": "Content",
|
|
61037
|
+
"text": "boolean | undefined"
|
|
61038
|
+
},
|
|
61039
|
+
{
|
|
61040
|
+
"kind": "Content",
|
|
61041
|
+
"text": ";"
|
|
61042
|
+
}
|
|
61043
|
+
],
|
|
61044
|
+
"isReadonly": false,
|
|
61045
|
+
"isOptional": true,
|
|
61046
|
+
"releaseTag": "Public",
|
|
61047
|
+
"name": "propagateToChildren",
|
|
61048
|
+
"propertyTypeTokenRange": {
|
|
61049
|
+
"startIndex": 1,
|
|
61050
|
+
"endIndex": 2
|
|
61051
|
+
}
|
|
61052
|
+
},
|
|
61026
61053
|
{
|
|
61027
61054
|
"kind": "PropertySignature",
|
|
61028
61055
|
"canonicalReference": "@dcl/playground-assets!PBVisibilityComponent#visible:member",
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/playground-assets",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "7.15.3-
|
|
4
|
+
"version": "7.15.3-20442422857.commit-bc61a50",
|
|
5
5
|
"author": "Decentraland",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@dcl/js-runtime": "7.15.3-
|
|
8
|
-
"@dcl/sdk": "7.15.3-
|
|
7
|
+
"@dcl/js-runtime": "7.15.3-20442422857.commit-bc61a50",
|
|
8
|
+
"@dcl/sdk": "7.15.3-20442422857.commit-bc61a50"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"@microsoft/api-extractor": "^7.33.8"
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
},
|
|
33
33
|
"types": "./dist/index.d.ts",
|
|
34
34
|
"typings": "./dist/index.d.ts",
|
|
35
|
-
"commit": "
|
|
35
|
+
"commit": "bc61a5032f605f1eb524e2b0394f4d6ae47aa997"
|
|
36
36
|
}
|