@mtgame/core 0.0.69 → 0.0.71
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 +7 -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/handball-game-log-types.js +5 -5
- package/esm2015/models/team.js +4 -1
- package/esm5/localization/handball-game-log-types.js +5 -5
- package/esm5/models/team.js +4 -1
- package/fesm2015/mtgame-core.js +7 -4
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +7 -4
- package/fesm5/mtgame-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -1084,6 +1084,9 @@
|
|
|
1084
1084
|
if (this.sport.isFootball()) {
|
|
1085
1085
|
classList.push('empty-logo-football');
|
|
1086
1086
|
}
|
|
1087
|
+
if (this.sport.isHandball()) {
|
|
1088
|
+
classList.push('empty-logo-handball');
|
|
1089
|
+
}
|
|
1087
1090
|
return classList.join(' ');
|
|
1088
1091
|
};
|
|
1089
1092
|
Team.toFront = function (data) {
|
|
@@ -8055,11 +8058,11 @@
|
|
|
8055
8058
|
_a$4[exports.HandballGameLogTypes.shot_blocked] = 'Заблокированный бросок',
|
|
8056
8059
|
_a$4[exports.HandballGameLogTypes.goal] = 'Гол',
|
|
8057
8060
|
_a$4[exports.HandballGameLogTypes.assist] = 'Передача',
|
|
8058
|
-
_a$4[exports.HandballGameLogTypes.penalty_miss] = '
|
|
8059
|
-
_a$4[exports.HandballGameLogTypes.penalty_shot_on_goal] = '
|
|
8060
|
-
_a$4[exports.HandballGameLogTypes.penalty_goal] = '
|
|
8061
|
+
_a$4[exports.HandballGameLogTypes.penalty_miss] = '7м промах',
|
|
8062
|
+
_a$4[exports.HandballGameLogTypes.penalty_shot_on_goal] = '7м в створ',
|
|
8063
|
+
_a$4[exports.HandballGameLogTypes.penalty_goal] = '7м гол',
|
|
8061
8064
|
_a$4[exports.HandballGameLogTypes.save] = 'Сэйв',
|
|
8062
|
-
_a$4[exports.HandballGameLogTypes.penalty_save] = 'Сэйв
|
|
8065
|
+
_a$4[exports.HandballGameLogTypes.penalty_save] = 'Сэйв 7м',
|
|
8063
8066
|
_a$4[exports.HandballGameLogTypes.foul] = 'Фол',
|
|
8064
8067
|
_a$4[exports.HandballGameLogTypes.yellow_card] = 'Желлтая карточка',
|
|
8065
8068
|
_a$4[exports.HandballGameLogTypes.red_card] = 'Красная карточка',
|