tods-competition-factory 2.2.27 → 2.2.28
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.mjs +1 -1
- package/dist/tods-competition-factory.d.ts +1255 -98
- package/dist/tods-competition-factory.development.cjs.js +2 -2
- package/dist/tods-competition-factory.development.cjs.js.map +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js +1 -1
- package/dist/tods-competition-factory.production.cjs.min.js.map +1 -1
- package/package.json +30 -29
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
function factoryVersion() {
|
|
6
|
-
return '2.2.
|
|
6
|
+
return '2.2.28';
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
const SINGLES_MATCHUP = 'SINGLES';
|
|
@@ -8747,7 +8747,7 @@ function getSourceDrawPositionRanges({ drawDefinition, structureId, matchUpsMap
|
|
|
8747
8747
|
if (feedProfile === BOTTOM_UP)
|
|
8748
8748
|
groups.forEach((group) => group.reverse());
|
|
8749
8749
|
orderedPositions =
|
|
8750
|
-
(sizedGroupOrder?.length && sizedGroupOrder?.map((order) => groups[order - 1]).flat()) ||
|
|
8750
|
+
(sizedGroupOrder?.length && sizedGroupOrder?.map((order) => groups[order - 1]).flat()) || groups.flat();
|
|
8751
8751
|
}
|
|
8752
8752
|
let drawPositionBlocks = chunkArray(orderedPositions, chunkSize);
|
|
8753
8753
|
if (positionInterleave) {
|