@dcl/ecs 7.3.24-6613667972.commit-84b272f → 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.
@@ -85,6 +85,13 @@ export declare const enum YGEdge {
85
85
  YGE_VERTICAL = 7,
86
86
  YGE_ALL = 8
87
87
  }
88
+ /**
89
+ * @public
90
+ */
91
+ export declare const enum PointerFilterMode {
92
+ PFM_NONE = 0,
93
+ PFM_BLOCK = 1
94
+ }
88
95
  /**
89
96
  * @public
90
97
  */
@@ -169,6 +176,8 @@ export interface PBUiTransform {
169
176
  /** YGUnit.YGU_UNDEFINED */
170
177
  paddingBottomUnit: YGUnit;
171
178
  paddingBottom: number;
179
+ /** default: PointerFilterMode.PFM_NONE */
180
+ pointerFilter?: PointerFilterMode | undefined;
172
181
  }
173
182
  /**
174
183
  * @public
@@ -96,6 +96,14 @@ export var YGEdge;
96
96
  YGEdge[YGEdge["YGE_VERTICAL"] = 7] = "YGE_VERTICAL";
97
97
  YGEdge[YGEdge["YGE_ALL"] = 8] = "YGE_ALL";
98
98
  })(YGEdge || (YGEdge = {}));
99
+ /**
100
+ * @public
101
+ */
102
+ export var PointerFilterMode;
103
+ (function (PointerFilterMode) {
104
+ PointerFilterMode[PointerFilterMode["PFM_NONE"] = 0] = "PFM_NONE";
105
+ PointerFilterMode[PointerFilterMode["PFM_BLOCK"] = 1] = "PFM_BLOCK";
106
+ })(PointerFilterMode || (PointerFilterMode = {}));
99
107
  function createBasePBUiTransform() {
100
108
  return {
101
109
  parent: 0,
@@ -149,6 +157,7 @@ function createBasePBUiTransform() {
149
157
  paddingRight: 0,
150
158
  paddingBottomUnit: 0,
151
159
  paddingBottom: 0,
160
+ pointerFilter: undefined,
152
161
  };
153
162
  }
154
163
  /**
@@ -310,6 +319,9 @@ export var PBUiTransform;
310
319
  if (message.paddingBottom !== 0) {
311
320
  writer.uint32(413).float(message.paddingBottom);
312
321
  }
322
+ if (message.pointerFilter !== undefined) {
323
+ writer.uint32(416).int32(message.pointerFilter);
324
+ }
313
325
  return writer;
314
326
  }
315
327
  PBUiTransform.encode = encode;
@@ -626,6 +638,12 @@ export var PBUiTransform;
626
638
  }
627
639
  message.paddingBottom = reader.float();
628
640
  continue;
641
+ case 52:
642
+ if (tag !== 416) {
643
+ break;
644
+ }
645
+ message.pointerFilter = reader.int32();
646
+ continue;
629
647
  }
630
648
  if ((tag & 7) === 4 || tag === 0) {
631
649
  break;
@@ -85,6 +85,13 @@ export declare const enum YGEdge {
85
85
  YGE_VERTICAL = 7,
86
86
  YGE_ALL = 8
87
87
  }
88
+ /**
89
+ * @public
90
+ */
91
+ export declare const enum PointerFilterMode {
92
+ PFM_NONE = 0,
93
+ PFM_BLOCK = 1
94
+ }
88
95
  /**
89
96
  * @public
90
97
  */
@@ -169,6 +176,8 @@ export interface PBUiTransform {
169
176
  /** YGUnit.YGU_UNDEFINED */
170
177
  paddingBottomUnit: YGUnit;
171
178
  paddingBottom: number;
179
+ /** default: PointerFilterMode.PFM_NONE */
180
+ pointerFilter?: PointerFilterMode | undefined;
172
181
  }
173
182
  /**
174
183
  * @public
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.PBUiTransform = exports.YGEdge = exports.YGDisplay = exports.YGOverflow = exports.YGJustify = exports.YGWrap = exports.YGFlexDirection = exports.YGUnit = exports.YGAlign = exports.YGPositionType = void 0;
6
+ exports.PBUiTransform = exports.PointerFilterMode = exports.YGEdge = exports.YGDisplay = exports.YGOverflow = exports.YGJustify = exports.YGWrap = exports.YGFlexDirection = exports.YGUnit = exports.YGAlign = exports.YGPositionType = void 0;
7
7
  /* eslint-disable */
8
8
  const minimal_1 = __importDefault(require("protobufjs/minimal"));
9
9
  const protobufPackageSarasa = "decentraland.sdk.components";
@@ -102,6 +102,14 @@ var YGEdge;
102
102
  YGEdge[YGEdge["YGE_VERTICAL"] = 7] = "YGE_VERTICAL";
103
103
  YGEdge[YGEdge["YGE_ALL"] = 8] = "YGE_ALL";
104
104
  })(YGEdge = exports.YGEdge || (exports.YGEdge = {}));
105
+ /**
106
+ * @public
107
+ */
108
+ var PointerFilterMode;
109
+ (function (PointerFilterMode) {
110
+ PointerFilterMode[PointerFilterMode["PFM_NONE"] = 0] = "PFM_NONE";
111
+ PointerFilterMode[PointerFilterMode["PFM_BLOCK"] = 1] = "PFM_BLOCK";
112
+ })(PointerFilterMode = exports.PointerFilterMode || (exports.PointerFilterMode = {}));
105
113
  function createBasePBUiTransform() {
106
114
  return {
107
115
  parent: 0,
@@ -155,6 +163,7 @@ function createBasePBUiTransform() {
155
163
  paddingRight: 0,
156
164
  paddingBottomUnit: 0,
157
165
  paddingBottom: 0,
166
+ pointerFilter: undefined,
158
167
  };
159
168
  }
160
169
  /**
@@ -316,6 +325,9 @@ var PBUiTransform;
316
325
  if (message.paddingBottom !== 0) {
317
326
  writer.uint32(413).float(message.paddingBottom);
318
327
  }
328
+ if (message.pointerFilter !== undefined) {
329
+ writer.uint32(416).int32(message.pointerFilter);
330
+ }
319
331
  return writer;
320
332
  }
321
333
  PBUiTransform.encode = encode;
@@ -632,6 +644,12 @@ var PBUiTransform;
632
644
  }
633
645
  message.paddingBottom = reader.float();
634
646
  continue;
647
+ case 52:
648
+ if (tag !== 416) {
649
+ break;
650
+ }
651
+ message.pointerFilter = reader.int32();
652
+ continue;
635
653
  }
636
654
  if ((tag & 7) === 4 || tag === 0) {
637
655
  break;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dcl/ecs",
3
3
  "description": "Decentraland ECS",
4
- "version": "7.3.24-6613667972.commit-84b272f",
4
+ "version": "7.3.24-6620605375.commit-3a46fcf",
5
5
  "author": "DCL",
6
6
  "bugs": "https://github.com/decentraland/ecs/issues",
7
7
  "files": [
@@ -33,5 +33,5 @@
33
33
  },
34
34
  "types": "./dist/index.d.ts",
35
35
  "typings": "./dist/index.d.ts",
36
- "commit": "84b272f237343d89e2a0ebdcc4f1f14cac7308f4"
36
+ "commit": "3a46fcffc10dd97e8af664027868c84746ac9a80"
37
37
  }