@dcl/playground-assets 7.3.24-6618289230.commit-1533637 → 7.3.24-6620605375.commit-3a46fcf
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
package/dist/alpha.d.ts
CHANGED
@@ -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
|
/**
|
package/dist/beta.d.ts
CHANGED
@@ -3541,7 +3541,7 @@ export declare const onVideoEvent: Observable<{
|
|
3541
3541
|
|
3542
3542
|
/**
|
3543
3543
|
* @public
|
3544
|
-
* The overflow property controls what happens to content that is too big to fit into an area
|
3544
|
+
* The overflow property controls what happens to content that is too big to fit into an area
|
3545
3545
|
*/
|
3546
3546
|
export declare type OverflowType = 'hidden' | 'scroll' | 'visible';
|
3547
3547
|
|
@@ -4884,6 +4884,8 @@ export declare interface PBUiTransform {
|
|
4884
4884
|
/** YGUnit.YGU_UNDEFINED */
|
4885
4885
|
paddingBottomUnit: YGUnit;
|
4886
4886
|
paddingBottom: number;
|
4887
|
+
/** default: PointerFilterMode.PFM_NONE */
|
4888
|
+
pointerFilter?: PointerFilterMode | undefined;
|
4887
4889
|
}
|
4888
4890
|
|
4889
4891
|
/**
|
@@ -5183,6 +5185,20 @@ export declare const enum PointerEventType {
|
|
5183
5185
|
PET_HOVER_LEAVE = 3
|
5184
5186
|
}
|
5185
5187
|
|
5188
|
+
/**
|
5189
|
+
* @public
|
5190
|
+
*/
|
5191
|
+
export declare const enum PointerFilterMode {
|
5192
|
+
PFM_NONE = 0,
|
5193
|
+
PFM_BLOCK = 1
|
5194
|
+
}
|
5195
|
+
|
5196
|
+
/**
|
5197
|
+
* @public
|
5198
|
+
* 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)
|
5199
|
+
*/
|
5200
|
+
export declare type PointerFilterType = 'none' | 'block';
|
5201
|
+
|
5186
5202
|
/** @public */
|
5187
5203
|
export declare const PointerLock: LastWriteWinElementSetComponentDefinition<PBPointerLock>;
|
5188
5204
|
|
@@ -6646,6 +6662,8 @@ export declare interface UiTransformProps {
|
|
6646
6662
|
flexShrink?: number;
|
6647
6663
|
/** The overflow property controls what happens to content that is too big to fit into an area */
|
6648
6664
|
overflow?: OverflowType;
|
6665
|
+
/** 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) **/
|
6666
|
+
pointerFilter?: PointerFilterType;
|
6649
6667
|
}
|
6650
6668
|
|
6651
6669
|
/**
|
package/dist/index.bundled.d.ts
CHANGED
@@ -3541,7 +3541,7 @@ export declare const onVideoEvent: Observable<{
|
|
3541
3541
|
|
3542
3542
|
/**
|
3543
3543
|
* @public
|
3544
|
-
* The overflow property controls what happens to content that is too big to fit into an area
|
3544
|
+
* The overflow property controls what happens to content that is too big to fit into an area
|
3545
3545
|
*/
|
3546
3546
|
export declare type OverflowType = 'hidden' | 'scroll' | 'visible';
|
3547
3547
|
|
@@ -4884,6 +4884,8 @@ export declare interface PBUiTransform {
|
|
4884
4884
|
/** YGUnit.YGU_UNDEFINED */
|
4885
4885
|
paddingBottomUnit: YGUnit;
|
4886
4886
|
paddingBottom: number;
|
4887
|
+
/** default: PointerFilterMode.PFM_NONE */
|
4888
|
+
pointerFilter?: PointerFilterMode | undefined;
|
4887
4889
|
}
|
4888
4890
|
|
4889
4891
|
/**
|
@@ -5183,6 +5185,20 @@ export declare const enum PointerEventType {
|
|
5183
5185
|
PET_HOVER_LEAVE = 3
|
5184
5186
|
}
|
5185
5187
|
|
5188
|
+
/**
|
5189
|
+
* @public
|
5190
|
+
*/
|
5191
|
+
export declare const enum PointerFilterMode {
|
5192
|
+
PFM_NONE = 0,
|
5193
|
+
PFM_BLOCK = 1
|
5194
|
+
}
|
5195
|
+
|
5196
|
+
/**
|
5197
|
+
* @public
|
5198
|
+
* 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)
|
5199
|
+
*/
|
5200
|
+
export declare type PointerFilterType = 'none' | 'block';
|
5201
|
+
|
5186
5202
|
/** @public */
|
5187
5203
|
export declare const PointerLock: LastWriteWinElementSetComponentDefinition<PBPointerLock>;
|
5188
5204
|
|
@@ -6646,6 +6662,8 @@ export declare interface UiTransformProps {
|
|
6646
6662
|
flexShrink?: number;
|
6647
6663
|
/** The overflow property controls what happens to content that is too big to fit into an area */
|
6648
6664
|
overflow?: OverflowType;
|
6665
|
+
/** 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) **/
|
6666
|
+
pointerFilter?: PointerFilterType;
|
6649
6667
|
}
|
6650
6668
|
|
6651
6669
|
/**
|