@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
|
@@ -4925,6 +4925,13 @@
|
|
|
4925
4925
|
enumerable: true,
|
|
4926
4926
|
configurable: true
|
|
4927
4927
|
});
|
|
4928
|
+
Object.defineProperty(VolleyballStatistic.prototype, "totalReceives", {
|
|
4929
|
+
get: function () {
|
|
4930
|
+
return this.receives + this.excellentReceives;
|
|
4931
|
+
},
|
|
4932
|
+
enumerable: true,
|
|
4933
|
+
configurable: true
|
|
4934
|
+
});
|
|
4928
4935
|
VolleyballStatistic.toFront = function (data) { };
|
|
4929
4936
|
VolleyballStatistic.toBack = function (data) { };
|
|
4930
4937
|
__decorate([
|
|
@@ -8598,10 +8605,10 @@
|
|
|
8598
8605
|
_a$2[exports.HockeyGameLogTypes.shot_on_goal] = 'Бросок по воротам',
|
|
8599
8606
|
_a$2[exports.HockeyGameLogTypes.shot_blocked] = 'Заблокированный бросок',
|
|
8600
8607
|
_a$2[exports.HockeyGameLogTypes.goal] = 'Гол',
|
|
8601
|
-
_a$2[exports.HockeyGameLogTypes.shootout_attempt] = '
|
|
8602
|
-
_a$2[exports.HockeyGameLogTypes.shootout_goal] = '
|
|
8603
|
-
_a$2[exports.HockeyGameLogTypes.after_game_shootout_attempt] = '
|
|
8604
|
-
_a$2[exports.HockeyGameLogTypes.after_game_shootout_goal] = '
|
|
8608
|
+
_a$2[exports.HockeyGameLogTypes.shootout_attempt] = 'Буллит промах',
|
|
8609
|
+
_a$2[exports.HockeyGameLogTypes.shootout_goal] = 'Буллит гол',
|
|
8610
|
+
_a$2[exports.HockeyGameLogTypes.after_game_shootout_attempt] = 'Буллит промах',
|
|
8611
|
+
_a$2[exports.HockeyGameLogTypes.after_game_shootout_goal] = 'Буллит гол',
|
|
8605
8612
|
_a$2[exports.HockeyGameLogTypes.assist] = 'Передача',
|
|
8606
8613
|
_a$2[exports.HockeyGameLogTypes.block_shot] = 'Блокировка броска',
|
|
8607
8614
|
_a$2[exports.HockeyGameLogTypes.minor_penalty] = 'Малый штраф',
|