lorgg-v2-components 0.2.7 → 0.2.8

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.
@@ -153,3 +153,4 @@ export { default as TournamentSwissRoundOptions } from "./library/TournamentSwis
153
153
  export { default as TournamentSwissRound } from "./library/TournamentSwissRound/TournamentSwissRound.vue";
154
154
  export { default as TournamentBracket } from "./library/TournamentBracket/TournamentBracket.vue";
155
155
  export { default as TournamentSidePanel } from "./library/TournamentSidePanel/TournamentSidePanel.vue";
156
+ export { default as TournamentMatchup } from "./library/TournamentMatchup/TournamentMatchup.vue";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lorgg-v2-components",
3
3
  "private": false,
4
- "version": "0.2.7",
4
+ "version": "0.2.8",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
package/CHANGELOG.md DELETED
@@ -1,10 +0,0 @@
1
- # Changelog
2
-
3
- ## 0.2.6 - 2026-02-24
4
-
5
- - Fixed Tournament standings expanded winrate field mapping:
6
- - Opponents Winrate now renders `opponentsMatchWinrate`
7
- - Game Winrate now renders `gameWins / (gameWins + gameLosses)`
8
- - Opponents Game Winrate now renders `opponentsGameWinrate`
9
- - Aligned Tournament `shownColumns` API keys to active usage: `player`, `matchWLs`, `gameWLs`, `winrate`.
10
- - Added a TournamentPlayerRow story assertion that validates winrate source mapping and displayed percentages.