@xcpcio/core 0.65.1 → 0.66.0
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/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -789,7 +789,7 @@ class Team {
|
|
|
789
789
|
}
|
|
790
790
|
}
|
|
791
791
|
isEqualRank(otherTeam) {
|
|
792
|
-
return this.solvedProblemNum === otherTeam.solvedProblemNum && this.penalty === otherTeam.penalty;
|
|
792
|
+
return this.solvedProblemNum === otherTeam.solvedProblemNum && this.penalty === otherTeam.penalty && this.lastSolvedProblemStatistics?.solvedTimestampToMinute === otherTeam.lastSolvedProblemStatistics?.solvedTimestampToMinute;
|
|
793
793
|
}
|
|
794
794
|
postProcessPlaceChartPoints() {
|
|
795
795
|
if (this.placeChartPoints.length === 0) {
|
package/dist/index.mjs
CHANGED
|
@@ -758,7 +758,7 @@ class Team {
|
|
|
758
758
|
}
|
|
759
759
|
}
|
|
760
760
|
isEqualRank(otherTeam) {
|
|
761
|
-
return this.solvedProblemNum === otherTeam.solvedProblemNum && this.penalty === otherTeam.penalty;
|
|
761
|
+
return this.solvedProblemNum === otherTeam.solvedProblemNum && this.penalty === otherTeam.penalty && this.lastSolvedProblemStatistics?.solvedTimestampToMinute === otherTeam.lastSolvedProblemStatistics?.solvedTimestampToMinute;
|
|
762
762
|
}
|
|
763
763
|
postProcessPlaceChartPoints() {
|
|
764
764
|
if (this.placeChartPoints.length === 0) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xcpcio/core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.66.0",
|
|
5
5
|
"description": "The core library for XCPCIO",
|
|
6
6
|
"author": "Dup4 <hi@dup4.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"papaparse": "^5.5.3",
|
|
43
43
|
"string-width": "^8.1.0",
|
|
44
44
|
"xlsx-js-style": "^1.2.0",
|
|
45
|
-
"@xcpcio/types": "0.
|
|
45
|
+
"@xcpcio/types": "0.66.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@babel/types": "^7.28.4",
|