@dcl/playground-assets 7.3.24-6552938380.commit-db02719 → 7.3.24-6613468311.commit-887e14c
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 +19 -1
- package/dist/beta.d.ts +19 -1
- package/dist/index.bundled.d.ts +19 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +3 -3
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +19 -1
- package/etc/playground-assets.api.json +146 -1
- package/etc/playground-assets.api.md +13 -0
- package/package.json +4 -4
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/sdk",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.3.24-
|
4
|
+
"version": "7.3.24-6613468311.commit-887e14c",
|
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": "887e14c7427b93436dc59b3e870783dd26722d58"
|
39
39
|
}
|
@@ -3560,7 +3560,7 @@ export declare const onVideoEvent: Observable<{
|
|
3560
3560
|
|
3561
3561
|
/**
|
3562
3562
|
* @public
|
3563
|
-
* The overflow property controls what happens to content that is too big to fit into an area
|
3563
|
+
* The overflow property controls what happens to content that is too big to fit into an area
|
3564
3564
|
*/
|
3565
3565
|
export declare type OverflowType = 'hidden' | 'scroll' | 'visible';
|
3566
3566
|
|
@@ -4903,6 +4903,8 @@ export declare interface PBUiTransform {
|
|
4903
4903
|
/** YGUnit.YGU_UNDEFINED */
|
4904
4904
|
paddingBottomUnit: YGUnit;
|
4905
4905
|
paddingBottom: number;
|
4906
|
+
/** default: PointerFilterMode.PFM_NONE */
|
4907
|
+
pointerFilter?: PointerFilterMode | undefined;
|
4906
4908
|
}
|
4907
4909
|
|
4908
4910
|
/**
|
@@ -5202,6 +5204,20 @@ export declare const enum PointerEventType {
|
|
5202
5204
|
PET_HOVER_LEAVE = 3
|
5203
5205
|
}
|
5204
5206
|
|
5207
|
+
/**
|
5208
|
+
* @public
|
5209
|
+
*/
|
5210
|
+
export declare const enum PointerFilterMode {
|
5211
|
+
PFM_NONE = 0,
|
5212
|
+
PFM_BLOCK = 1
|
5213
|
+
}
|
5214
|
+
|
5215
|
+
/**
|
5216
|
+
* @public
|
5217
|
+
* The pointer filter property determines if the ui element blocks the pointer or not (elements with pointer events always block the pointer regardless of this property)
|
5218
|
+
*/
|
5219
|
+
export declare type PointerFilterType = 'none' | 'block';
|
5220
|
+
|
5205
5221
|
/** @public */
|
5206
5222
|
export declare const PointerLock: LastWriteWinElementSetComponentDefinition<PBPointerLock>;
|
5207
5223
|
|
@@ -6670,6 +6686,8 @@ export declare interface UiTransformProps {
|
|
6670
6686
|
flexShrink?: number;
|
6671
6687
|
/** The overflow property controls what happens to content that is too big to fit into an area */
|
6672
6688
|
overflow?: OverflowType;
|
6689
|
+
/** The pointer filter property determines if the ui element blocks the pointer or not (elements with pointer events always block the pointer regardless of this property) **/
|
6690
|
+
pointerFilter?: PointerFilterType;
|
6673
6691
|
}
|
6674
6692
|
|
6675
6693
|
/**
|
@@ -34350,7 +34350,7 @@
|
|
34350
34350
|
{
|
34351
34351
|
"kind": "TypeAlias",
|
34352
34352
|
"canonicalReference": "@dcl/playground-assets!OverflowType:type",
|
34353
|
-
"docComment": "/**\n * The overflow property controls what happens to content that is too big to fit into an area
|
34353
|
+
"docComment": "/**\n * The overflow property controls what happens to content that is too big to fit into an area\n *\n * @public\n */\n",
|
34354
34354
|
"excerptTokens": [
|
34355
34355
|
{
|
34356
34356
|
"kind": "Content",
|
@@ -48931,6 +48931,38 @@
|
|
48931
48931
|
"endIndex": 2
|
48932
48932
|
}
|
48933
48933
|
},
|
48934
|
+
{
|
48935
|
+
"kind": "PropertySignature",
|
48936
|
+
"canonicalReference": "@dcl/playground-assets!PBUiTransform#pointerFilter:member",
|
48937
|
+
"docComment": "/**\n * default: PointerFilterMode.PFM_NONE\n */\n",
|
48938
|
+
"excerptTokens": [
|
48939
|
+
{
|
48940
|
+
"kind": "Content",
|
48941
|
+
"text": "pointerFilter?: "
|
48942
|
+
},
|
48943
|
+
{
|
48944
|
+
"kind": "Reference",
|
48945
|
+
"text": "PointerFilterMode",
|
48946
|
+
"canonicalReference": "@dcl/playground-assets!PointerFilterMode:enum"
|
48947
|
+
},
|
48948
|
+
{
|
48949
|
+
"kind": "Content",
|
48950
|
+
"text": " | undefined"
|
48951
|
+
},
|
48952
|
+
{
|
48953
|
+
"kind": "Content",
|
48954
|
+
"text": ";"
|
48955
|
+
}
|
48956
|
+
],
|
48957
|
+
"isReadonly": false,
|
48958
|
+
"isOptional": true,
|
48959
|
+
"releaseTag": "Public",
|
48960
|
+
"name": "pointerFilter",
|
48961
|
+
"propertyTypeTokenRange": {
|
48962
|
+
"startIndex": 1,
|
48963
|
+
"endIndex": 3
|
48964
|
+
}
|
48965
|
+
},
|
48934
48966
|
{
|
48935
48967
|
"kind": "PropertySignature",
|
48936
48968
|
"canonicalReference": "@dcl/playground-assets!PBUiTransform#positionBottom:member",
|
@@ -52373,6 +52405,91 @@
|
|
52373
52405
|
}
|
52374
52406
|
]
|
52375
52407
|
},
|
52408
|
+
{
|
52409
|
+
"kind": "Enum",
|
52410
|
+
"canonicalReference": "@dcl/playground-assets!PointerFilterMode:enum",
|
52411
|
+
"docComment": "/**\n * @public\n */\n",
|
52412
|
+
"excerptTokens": [
|
52413
|
+
{
|
52414
|
+
"kind": "Content",
|
52415
|
+
"text": "export declare const enum PointerFilterMode "
|
52416
|
+
}
|
52417
|
+
],
|
52418
|
+
"fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/ui_transform.gen.d.ts",
|
52419
|
+
"releaseTag": "Public",
|
52420
|
+
"name": "PointerFilterMode",
|
52421
|
+
"preserveMemberOrder": false,
|
52422
|
+
"members": [
|
52423
|
+
{
|
52424
|
+
"kind": "EnumMember",
|
52425
|
+
"canonicalReference": "@dcl/playground-assets!PointerFilterMode.PFM_BLOCK:member",
|
52426
|
+
"docComment": "",
|
52427
|
+
"excerptTokens": [
|
52428
|
+
{
|
52429
|
+
"kind": "Content",
|
52430
|
+
"text": "PFM_BLOCK = "
|
52431
|
+
},
|
52432
|
+
{
|
52433
|
+
"kind": "Content",
|
52434
|
+
"text": "1"
|
52435
|
+
}
|
52436
|
+
],
|
52437
|
+
"initializerTokenRange": {
|
52438
|
+
"startIndex": 1,
|
52439
|
+
"endIndex": 2
|
52440
|
+
},
|
52441
|
+
"releaseTag": "Public",
|
52442
|
+
"name": "PFM_BLOCK"
|
52443
|
+
},
|
52444
|
+
{
|
52445
|
+
"kind": "EnumMember",
|
52446
|
+
"canonicalReference": "@dcl/playground-assets!PointerFilterMode.PFM_NONE:member",
|
52447
|
+
"docComment": "",
|
52448
|
+
"excerptTokens": [
|
52449
|
+
{
|
52450
|
+
"kind": "Content",
|
52451
|
+
"text": "PFM_NONE = "
|
52452
|
+
},
|
52453
|
+
{
|
52454
|
+
"kind": "Content",
|
52455
|
+
"text": "0"
|
52456
|
+
}
|
52457
|
+
],
|
52458
|
+
"initializerTokenRange": {
|
52459
|
+
"startIndex": 1,
|
52460
|
+
"endIndex": 2
|
52461
|
+
},
|
52462
|
+
"releaseTag": "Public",
|
52463
|
+
"name": "PFM_NONE"
|
52464
|
+
}
|
52465
|
+
]
|
52466
|
+
},
|
52467
|
+
{
|
52468
|
+
"kind": "TypeAlias",
|
52469
|
+
"canonicalReference": "@dcl/playground-assets!PointerFilterType:type",
|
52470
|
+
"docComment": "/**\n * The pointer filter property determines if the ui element blocks the pointer or not (elements with pointer events always block the pointer regardless of this property)\n *\n * @public\n */\n",
|
52471
|
+
"excerptTokens": [
|
52472
|
+
{
|
52473
|
+
"kind": "Content",
|
52474
|
+
"text": "export type PointerFilterType = "
|
52475
|
+
},
|
52476
|
+
{
|
52477
|
+
"kind": "Content",
|
52478
|
+
"text": "'none' | 'block'"
|
52479
|
+
},
|
52480
|
+
{
|
52481
|
+
"kind": "Content",
|
52482
|
+
"text": ";"
|
52483
|
+
}
|
52484
|
+
],
|
52485
|
+
"fileUrlPath": "../react-ecs/dist/components/uiTransform/types.d.ts",
|
52486
|
+
"releaseTag": "Public",
|
52487
|
+
"name": "PointerFilterType",
|
52488
|
+
"typeTokenRange": {
|
52489
|
+
"startIndex": 1,
|
52490
|
+
"endIndex": 2
|
52491
|
+
}
|
52492
|
+
},
|
52376
52493
|
{
|
52377
52494
|
"kind": "Variable",
|
52378
52495
|
"canonicalReference": "@dcl/playground-assets!PointerLock:var",
|
@@ -64990,6 +65107,34 @@
|
|
64990
65107
|
"endIndex": 6
|
64991
65108
|
}
|
64992
65109
|
},
|
65110
|
+
{
|
65111
|
+
"kind": "PropertySignature",
|
65112
|
+
"canonicalReference": "@dcl/playground-assets!UiTransformProps#pointerFilter:member",
|
65113
|
+
"docComment": "/**\n * The pointer filter property determines if the ui element blocks the pointer or not (elements with pointer events always block the pointer regardless of this property) *\n */\n",
|
65114
|
+
"excerptTokens": [
|
65115
|
+
{
|
65116
|
+
"kind": "Content",
|
65117
|
+
"text": "pointerFilter?: "
|
65118
|
+
},
|
65119
|
+
{
|
65120
|
+
"kind": "Reference",
|
65121
|
+
"text": "PointerFilterType",
|
65122
|
+
"canonicalReference": "@dcl/playground-assets!PointerFilterType:type"
|
65123
|
+
},
|
65124
|
+
{
|
65125
|
+
"kind": "Content",
|
65126
|
+
"text": ";"
|
65127
|
+
}
|
65128
|
+
],
|
65129
|
+
"isReadonly": false,
|
65130
|
+
"isOptional": true,
|
65131
|
+
"releaseTag": "Public",
|
65132
|
+
"name": "pointerFilter",
|
65133
|
+
"propertyTypeTokenRange": {
|
65134
|
+
"startIndex": 1,
|
65135
|
+
"endIndex": 2
|
65136
|
+
}
|
65137
|
+
},
|
64993
65138
|
{
|
64994
65139
|
"kind": "PropertySignature",
|
64995
65140
|
"canonicalReference": "@dcl/playground-assets!UiTransformProps#position:member",
|
@@ -2939,6 +2939,7 @@ export interface PBUiTransform {
|
|
2939
2939
|
paddingTopUnit: YGUnit;
|
2940
2940
|
// (undocumented)
|
2941
2941
|
parent: number;
|
2942
|
+
pointerFilter?: PointerFilterMode | undefined;
|
2942
2943
|
// (undocumented)
|
2943
2944
|
positionBottom: number;
|
2944
2945
|
positionBottomUnit: YGUnit;
|
@@ -3125,6 +3126,17 @@ export const enum PointerEventType {
|
|
3125
3126
|
PET_UP = 0
|
3126
3127
|
}
|
3127
3128
|
|
3129
|
+
// @public (undocumented)
|
3130
|
+
export const enum PointerFilterMode {
|
3131
|
+
// (undocumented)
|
3132
|
+
PFM_BLOCK = 1,
|
3133
|
+
// (undocumented)
|
3134
|
+
PFM_NONE = 0
|
3135
|
+
}
|
3136
|
+
|
3137
|
+
// @public
|
3138
|
+
export type PointerFilterType = 'none' | 'block';
|
3139
|
+
|
3128
3140
|
// @public (undocumented)
|
3129
3141
|
export const PointerLock: LastWriteWinElementSetComponentDefinition<PBPointerLock>;
|
3130
3142
|
|
@@ -3941,6 +3953,7 @@ export interface UiTransformProps {
|
|
3941
3953
|
minWidth?: PositionUnit;
|
3942
3954
|
overflow?: OverflowType;
|
3943
3955
|
padding?: Partial<Position> | PositionShorthand;
|
3956
|
+
pointerFilter?: PointerFilterType;
|
3944
3957
|
position?: Partial<Position> | PositionShorthand;
|
3945
3958
|
positionType?: PositionType;
|
3946
3959
|
width?: PositionUnit;
|
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/playground-assets",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.3.24-
|
4
|
+
"version": "7.3.24-6613468311.commit-887e14c",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"dependencies": {
|
7
|
-
"@dcl/js-runtime": "7.3.24-
|
8
|
-
"@dcl/sdk": "7.3.24-
|
7
|
+
"@dcl/js-runtime": "7.3.24-6613468311.commit-887e14c",
|
8
|
+
"@dcl/sdk": "7.3.24-6613468311.commit-887e14c"
|
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": "887e14c7427b93436dc59b3e870783dd26722d58"
|
36
36
|
}
|