@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
|
@@ -873,6 +873,7 @@ export interface ECS6ComponentUiInputText {
|
|
|
873
873
|
onFocus?: string | undefined;
|
|
874
874
|
onBlur?: string | undefined;
|
|
875
875
|
onTextSubmit?: string | undefined;
|
|
876
|
+
onChanged?: string | undefined;
|
|
876
877
|
}
|
|
877
878
|
|
|
878
879
|
/** CLASS_ID.UI_IMAGE_SHAPE */
|
|
@@ -6998,6 +6999,7 @@ function createBaseECS6ComponentUiInputText(): ECS6ComponentUiInputText {
|
|
|
6998
6999
|
onFocus: undefined,
|
|
6999
7000
|
onBlur: undefined,
|
|
7000
7001
|
onTextSubmit: undefined,
|
|
7002
|
+
onChanged: undefined,
|
|
7001
7003
|
};
|
|
7002
7004
|
}
|
|
7003
7005
|
|
|
@@ -7108,6 +7110,9 @@ export namespace ECS6ComponentUiInputText {
|
|
|
7108
7110
|
if (message.onTextSubmit !== undefined) {
|
|
7109
7111
|
writer.uint32(322).string(message.onTextSubmit);
|
|
7110
7112
|
}
|
|
7113
|
+
if (message.onChanged !== undefined) {
|
|
7114
|
+
writer.uint32(330).string(message.onChanged);
|
|
7115
|
+
}
|
|
7111
7116
|
return writer;
|
|
7112
7117
|
}
|
|
7113
7118
|
|
|
@@ -7363,6 +7368,13 @@ export namespace ECS6ComponentUiInputText {
|
|
|
7363
7368
|
|
|
7364
7369
|
message.onTextSubmit = reader.string();
|
|
7365
7370
|
continue;
|
|
7371
|
+
case 41:
|
|
7372
|
+
if (tag !== 330) {
|
|
7373
|
+
break;
|
|
7374
|
+
}
|
|
7375
|
+
|
|
7376
|
+
message.onChanged = reader.string();
|
|
7377
|
+
continue;
|
|
7366
7378
|
}
|
|
7367
7379
|
if ((tag & 7) === 4 || tag === 0) {
|
|
7368
7380
|
break;
|
|
@@ -7409,6 +7421,7 @@ export namespace ECS6ComponentUiInputText {
|
|
|
7409
7421
|
onFocus: isSet(object.onFocus) ? String(object.onFocus) : undefined,
|
|
7410
7422
|
onBlur: isSet(object.onBlur) ? String(object.onBlur) : undefined,
|
|
7411
7423
|
onTextSubmit: isSet(object.onTextSubmit) ? String(object.onTextSubmit) : undefined,
|
|
7424
|
+
onChanged: isSet(object.onChanged) ? String(object.onChanged) : undefined,
|
|
7412
7425
|
};
|
|
7413
7426
|
}
|
|
7414
7427
|
|
|
@@ -7454,6 +7467,7 @@ export namespace ECS6ComponentUiInputText {
|
|
|
7454
7467
|
message.onFocus !== undefined && (obj.onFocus = message.onFocus);
|
|
7455
7468
|
message.onBlur !== undefined && (obj.onBlur = message.onBlur);
|
|
7456
7469
|
message.onTextSubmit !== undefined && (obj.onTextSubmit = message.onTextSubmit);
|
|
7470
|
+
message.onChanged !== undefined && (obj.onChanged = message.onChanged);
|
|
7457
7471
|
return obj;
|
|
7458
7472
|
}
|
|
7459
7473
|
|
|
@@ -7518,6 +7532,7 @@ export namespace ECS6ComponentUiInputText {
|
|
|
7518
7532
|
message.onFocus = object.onFocus ?? undefined;
|
|
7519
7533
|
message.onBlur = object.onBlur ?? undefined;
|
|
7520
7534
|
message.onTextSubmit = object.onTextSubmit ?? undefined;
|
|
7535
|
+
message.onChanged = object.onChanged ?? undefined;
|
|
7521
7536
|
return message;
|
|
7522
7537
|
}
|
|
7523
7538
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcl/protocol",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-5125382977.commit-f7db98f",
|
|
4
4
|
"description": "",
|
|
5
5
|
"repository": "decentraland/protocol.git",
|
|
6
6
|
"homepage": "https://github.com/decentraland/protocol#readme",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"out-js",
|
|
30
30
|
"public"
|
|
31
31
|
],
|
|
32
|
-
"commit": "
|
|
32
|
+
"commit": "f7db98fbad4c9a98c85a2f6aaed6825b755b8f43"
|
|
33
33
|
}
|