@mtgame/core 0.1.33 → 0.1.35
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/bundles/mtgame-core.umd.js +11 -4
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +1 -1
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/localization/hockey-game-log-types.js +5 -5
- package/esm2015/models/volleyball-statistic.js +4 -1
- package/esm5/localization/hockey-game-log-types.js +5 -5
- package/esm5/models/volleyball-statistic.js +8 -1
- package/fesm2015/mtgame-core.js +7 -4
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +11 -4
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/volleyball-statistic.d.ts +1 -0
- package/package.json +1 -1
package/fesm5/mtgame-core.js
CHANGED
|
@@ -4712,6 +4712,13 @@ var VolleyballStatistic = /** @class */ (function (_super) {
|
|
|
4712
4712
|
enumerable: true,
|
|
4713
4713
|
configurable: true
|
|
4714
4714
|
});
|
|
4715
|
+
Object.defineProperty(VolleyballStatistic.prototype, "totalReceives", {
|
|
4716
|
+
get: function () {
|
|
4717
|
+
return this.receives + this.excellentReceives;
|
|
4718
|
+
},
|
|
4719
|
+
enumerable: true,
|
|
4720
|
+
configurable: true
|
|
4721
|
+
});
|
|
4715
4722
|
VolleyballStatistic.toFront = function (data) { };
|
|
4716
4723
|
VolleyballStatistic.toBack = function (data) { };
|
|
4717
4724
|
__decorate([
|
|
@@ -8385,10 +8392,10 @@ var HockeyGameLogTypeLocalization = (_a$2 = {},
|
|
|
8385
8392
|
_a$2[HockeyGameLogTypes.shot_on_goal] = 'Бросок по воротам',
|
|
8386
8393
|
_a$2[HockeyGameLogTypes.shot_blocked] = 'Заблокированный бросок',
|
|
8387
8394
|
_a$2[HockeyGameLogTypes.goal] = 'Гол',
|
|
8388
|
-
_a$2[HockeyGameLogTypes.shootout_attempt] = '
|
|
8389
|
-
_a$2[HockeyGameLogTypes.shootout_goal] = '
|
|
8390
|
-
_a$2[HockeyGameLogTypes.after_game_shootout_attempt] = '
|
|
8391
|
-
_a$2[HockeyGameLogTypes.after_game_shootout_goal] = '
|
|
8395
|
+
_a$2[HockeyGameLogTypes.shootout_attempt] = 'Буллит промах',
|
|
8396
|
+
_a$2[HockeyGameLogTypes.shootout_goal] = 'Буллит гол',
|
|
8397
|
+
_a$2[HockeyGameLogTypes.after_game_shootout_attempt] = 'Буллит промах',
|
|
8398
|
+
_a$2[HockeyGameLogTypes.after_game_shootout_goal] = 'Буллит гол',
|
|
8392
8399
|
_a$2[HockeyGameLogTypes.assist] = 'Передача',
|
|
8393
8400
|
_a$2[HockeyGameLogTypes.block_shot] = 'Блокировка броска',
|
|
8394
8401
|
_a$2[HockeyGameLogTypes.minor_penalty] = 'Малый штраф',
|