diff --git a/components.d.ts b/components.d.ts
index 12df73b..09af641 100644
--- a/components.d.ts
+++ b/components.d.ts
@@ -10,6 +10,7 @@ export {}
declare module '@vue/runtime-core' {
export interface GlobalComponents {
CardImagesDisplay: typeof import('./src/components/CardImagesDisplay.vue')['default']
+ ExtendedStandingsTable: typeof import('./src/components/ExtendedStandingsTable.vue')['default']
IconCommunity: typeof import('./src/components/icons/IconCommunity.vue')['default']
IconDocumentation: typeof import('./src/components/icons/IconDocumentation.vue')['default']
IconEcosystem: typeof import('./src/components/icons/IconEcosystem.vue')['default']
diff --git a/src/components/ExtendedStandingsTable.vue b/src/components/ExtendedStandingsTable.vue
new file mode 100644
index 0000000..cb75ba5
--- /dev/null
+++ b/src/components/ExtendedStandingsTable.vue
@@ -0,0 +1,98 @@
+
+
+
+
+
+
+
+
+
+ {{ division.name }}
+ Record
+ Win %
+ GB
+ E#
+ Home
+ Away
+ v Div 1
+ v Div 2
+ v Div 3
+ v Div 4
+ 1 Run
+ Pythag
+ Run Diff
+ Last 8
+ Streak
+
+
+
+
+
+
+ {{ record(team) }}
+ {{ team.winPercentage }}
+ {{ gamesBack(team) }}
+ {{ eliminationNumber(team) }}
+ {{ team.homeRecord }}
+ {{ team.awayRecord }}
+ {{ team.division1Record }}
+ {{ team.division2Record }}
+ {{ team.division3Record }}
+ {{ team.division4Record }}
+ {{ team.oneRunRecord }}
+ {{ team.pythagRecord }}
+ {{ team.runDifferential }}
+ {{ team.last8Record }}
+ {{ team.streak }}
+