@dcl/protocol 1.0.0-5112230174.commit-a71a7e0 → 1.0.0-5125382977.commit-f7db98f
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/out-js/decentraland/sdk/ecs6/components_ecs6.gen.d.ts +1 -0
- package/out-js/decentraland/sdk/ecs6/components_ecs6.gen.js +14 -1
- package/out-js/decentraland/sdk/ecs6/components_ecs6.gen.js.map +1 -1
- package/out-ts/decentraland/sdk/ecs6/components_ecs6.gen.ts +15 -0
- package/package.json +2 -2
- package/proto/decentraland/sdk/ecs6/components_ecs6.proto +1 -0
|
@@ -515,6 +515,7 @@ export interface ECS6ComponentUiInputText {
|
|
|
515
515
|
onFocus?: string | undefined;
|
|
516
516
|
onBlur?: string | undefined;
|
|
517
517
|
onTextSubmit?: string | undefined;
|
|
518
|
+
onChanged?: string | undefined;
|
|
518
519
|
}
|
|
519
520
|
/** CLASS_ID.UI_IMAGE_SHAPE */
|
|
520
521
|
export interface ECS6ComponentUiImage {
|
|
@@ -6036,6 +6036,7 @@ function createBaseECS6ComponentUiInputText() {
|
|
|
6036
6036
|
onFocus: undefined,
|
|
6037
6037
|
onBlur: undefined,
|
|
6038
6038
|
onTextSubmit: undefined,
|
|
6039
|
+
onChanged: undefined,
|
|
6039
6040
|
};
|
|
6040
6041
|
}
|
|
6041
6042
|
var ECS6ComponentUiInputText;
|
|
@@ -6146,6 +6147,9 @@ var ECS6ComponentUiInputText;
|
|
|
6146
6147
|
if (message.onTextSubmit !== undefined) {
|
|
6147
6148
|
writer.uint32(322).string(message.onTextSubmit);
|
|
6148
6149
|
}
|
|
6150
|
+
if (message.onChanged !== undefined) {
|
|
6151
|
+
writer.uint32(330).string(message.onChanged);
|
|
6152
|
+
}
|
|
6149
6153
|
return writer;
|
|
6150
6154
|
}
|
|
6151
6155
|
ECS6ComponentUiInputText.encode = encode;
|
|
@@ -6366,6 +6370,12 @@ var ECS6ComponentUiInputText;
|
|
|
6366
6370
|
}
|
|
6367
6371
|
message.onTextSubmit = reader.string();
|
|
6368
6372
|
continue;
|
|
6373
|
+
case 41:
|
|
6374
|
+
if (tag !== 330) {
|
|
6375
|
+
break;
|
|
6376
|
+
}
|
|
6377
|
+
message.onChanged = reader.string();
|
|
6378
|
+
continue;
|
|
6369
6379
|
}
|
|
6370
6380
|
if ((tag & 7) === 4 || tag === 0) {
|
|
6371
6381
|
break;
|
|
@@ -6412,6 +6422,7 @@ var ECS6ComponentUiInputText;
|
|
|
6412
6422
|
onFocus: isSet(object.onFocus) ? String(object.onFocus) : undefined,
|
|
6413
6423
|
onBlur: isSet(object.onBlur) ? String(object.onBlur) : undefined,
|
|
6414
6424
|
onTextSubmit: isSet(object.onTextSubmit) ? String(object.onTextSubmit) : undefined,
|
|
6425
|
+
onChanged: isSet(object.onChanged) ? String(object.onChanged) : undefined,
|
|
6415
6426
|
};
|
|
6416
6427
|
}
|
|
6417
6428
|
ECS6ComponentUiInputText.fromJSON = fromJSON;
|
|
@@ -6457,6 +6468,7 @@ var ECS6ComponentUiInputText;
|
|
|
6457
6468
|
message.onFocus !== undefined && (obj.onFocus = message.onFocus);
|
|
6458
6469
|
message.onBlur !== undefined && (obj.onBlur = message.onBlur);
|
|
6459
6470
|
message.onTextSubmit !== undefined && (obj.onTextSubmit = message.onTextSubmit);
|
|
6471
|
+
message.onChanged !== undefined && (obj.onChanged = message.onChanged);
|
|
6460
6472
|
return obj;
|
|
6461
6473
|
}
|
|
6462
6474
|
ECS6ComponentUiInputText.toJSON = toJSON;
|
|
@@ -6465,7 +6477,7 @@ var ECS6ComponentUiInputText;
|
|
|
6465
6477
|
}
|
|
6466
6478
|
ECS6ComponentUiInputText.create = create;
|
|
6467
6479
|
function fromPartial(object) {
|
|
6468
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2;
|
|
6480
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3;
|
|
6469
6481
|
const message = createBaseECS6ComponentUiInputText();
|
|
6470
6482
|
message.name = (_a = object.name) !== null && _a !== void 0 ? _a : undefined;
|
|
6471
6483
|
message.visible = (_b = object.visible) !== null && _b !== void 0 ? _b : undefined;
|
|
@@ -6518,6 +6530,7 @@ var ECS6ComponentUiInputText;
|
|
|
6518
6530
|
message.onFocus = (_0 = object.onFocus) !== null && _0 !== void 0 ? _0 : undefined;
|
|
6519
6531
|
message.onBlur = (_1 = object.onBlur) !== null && _1 !== void 0 ? _1 : undefined;
|
|
6520
6532
|
message.onTextSubmit = (_2 = object.onTextSubmit) !== null && _2 !== void 0 ? _2 : undefined;
|
|
6533
|
+
message.onChanged = (_3 = object.onChanged) !== null && _3 !== void 0 ? _3 : undefined;
|
|
6521
6534
|
return message;
|
|
6522
6535
|
}
|
|
6523
6536
|
ECS6ComponentUiInputText.fromPartial = fromPartial;
|