@mtgame/core 0.1.29 → 0.1.30
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 +35 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/bundles/mtgame-core.umd.min.js +2 -2
- package/bundles/mtgame-core.umd.min.js.map +1 -1
- package/esm2015/models/base-statistic.js +1 -1
- package/esm2015/models/basketball-statistic.js +4 -1
- package/esm2015/models/football-statistic.js +4 -1
- package/esm2015/models/handball-statistic.js +4 -1
- package/esm2015/models/hockey-statistic.js +4 -1
- package/esm2015/models/volleyball-statistic.js +4 -1
- package/esm5/models/base-statistic.js +1 -1
- package/esm5/models/basketball-statistic.js +8 -1
- package/esm5/models/football-statistic.js +8 -1
- package/esm5/models/handball-statistic.js +8 -1
- package/esm5/models/hockey-statistic.js +8 -1
- package/esm5/models/volleyball-statistic.js +8 -1
- package/fesm2015/mtgame-core.js +15 -0
- package/fesm2015/mtgame-core.js.map +1 -1
- package/fesm5/mtgame-core.js +35 -0
- package/fesm5/mtgame-core.js.map +1 -1
- package/models/base-statistic.d.ts +1 -0
- package/models/basketball-statistic.d.ts +1 -0
- package/models/football-statistic.d.ts +1 -0
- package/models/handball-statistic.d.ts +1 -0
- package/models/hockey-statistic.d.ts +1 -0
- package/models/volleyball-statistic.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2640,6 +2640,13 @@
|
|
|
2640
2640
|
enumerable: true,
|
|
2641
2641
|
configurable: true
|
|
2642
2642
|
});
|
|
2643
|
+
Object.defineProperty(BasketballStatistic.prototype, "tournamentTeamPoints", {
|
|
2644
|
+
get: function () {
|
|
2645
|
+
return this.tournamentTeam && this.tournamentTeam.points;
|
|
2646
|
+
},
|
|
2647
|
+
enumerable: true,
|
|
2648
|
+
configurable: true
|
|
2649
|
+
});
|
|
2643
2650
|
BasketballStatistic.toFront = function (data) { };
|
|
2644
2651
|
BasketballStatistic.toBack = function (data) { };
|
|
2645
2652
|
__decorate([
|
|
@@ -3542,6 +3549,13 @@
|
|
|
3542
3549
|
enumerable: true,
|
|
3543
3550
|
configurable: true
|
|
3544
3551
|
});
|
|
3552
|
+
Object.defineProperty(HockeyStatistic.prototype, "tournamentTeamPoints", {
|
|
3553
|
+
get: function () {
|
|
3554
|
+
return this.tournamentTeam && this.tournamentTeam.points;
|
|
3555
|
+
},
|
|
3556
|
+
enumerable: true,
|
|
3557
|
+
configurable: true
|
|
3558
|
+
});
|
|
3545
3559
|
HockeyStatistic.toFront = function (data) { };
|
|
3546
3560
|
HockeyStatistic.toBack = function (data) { };
|
|
3547
3561
|
__decorate([
|
|
@@ -4047,6 +4061,13 @@
|
|
|
4047
4061
|
enumerable: true,
|
|
4048
4062
|
configurable: true
|
|
4049
4063
|
});
|
|
4064
|
+
Object.defineProperty(FootballStatistic.prototype, "tournamentTeamPoints", {
|
|
4065
|
+
get: function () {
|
|
4066
|
+
return this.tournamentTeam && this.tournamentTeam.points;
|
|
4067
|
+
},
|
|
4068
|
+
enumerable: true,
|
|
4069
|
+
configurable: true
|
|
4070
|
+
});
|
|
4050
4071
|
FootballStatistic.toFront = function (data) { };
|
|
4051
4072
|
FootballStatistic.toBack = function (data) { };
|
|
4052
4073
|
__decorate([
|
|
@@ -4497,6 +4518,13 @@
|
|
|
4497
4518
|
enumerable: true,
|
|
4498
4519
|
configurable: true
|
|
4499
4520
|
});
|
|
4521
|
+
Object.defineProperty(HandballStatistic.prototype, "tournamentTeamPoints", {
|
|
4522
|
+
get: function () {
|
|
4523
|
+
return this.tournamentTeam && this.tournamentTeam.points;
|
|
4524
|
+
},
|
|
4525
|
+
enumerable: true,
|
|
4526
|
+
configurable: true
|
|
4527
|
+
});
|
|
4500
4528
|
HandballStatistic.toFront = function (data) { };
|
|
4501
4529
|
HandballStatistic.toBack = function (data) { };
|
|
4502
4530
|
__decorate([
|
|
@@ -4792,6 +4820,13 @@
|
|
|
4792
4820
|
function VolleyballStatistic() {
|
|
4793
4821
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
4794
4822
|
}
|
|
4823
|
+
Object.defineProperty(VolleyballStatistic.prototype, "tournamentTeamPoints", {
|
|
4824
|
+
get: function () {
|
|
4825
|
+
return this.tournamentTeam && this.tournamentTeam.points;
|
|
4826
|
+
},
|
|
4827
|
+
enumerable: true,
|
|
4828
|
+
configurable: true
|
|
4829
|
+
});
|
|
4795
4830
|
VolleyballStatistic.toFront = function (data) { };
|
|
4796
4831
|
VolleyballStatistic.toBack = function (data) { };
|
|
4797
4832
|
__decorate([
|