@sensiblestats/widget-sdk 0.35.1 → 0.35.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @sensiblestats/widget-sdk
2
2
 
3
+ ## 0.35.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 324f7eb: Injuries card: order columns by home/away (home left, away right).
8
+
3
9
  ## 0.35.1
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.cts CHANGED
@@ -164,6 +164,7 @@ interface InjuriesCardData {
164
164
  oursCrestUrl?: string | null;
165
165
  theirsCrestUrl?: string | null;
166
166
  emptyLabel: string;
167
+ oursIsHome: boolean;
167
168
  }
168
169
  interface InjuriesCard extends ClubFanDashboardCardBase {
169
170
  cardType: 'injuries';
package/dist/index.d.ts CHANGED
@@ -164,6 +164,7 @@ interface InjuriesCardData {
164
164
  oursCrestUrl?: string | null;
165
165
  theirsCrestUrl?: string | null;
166
166
  emptyLabel: string;
167
+ oursIsHome: boolean;
167
168
  }
168
169
  interface InjuriesCard extends ClubFanDashboardCardBase {
169
170
  cardType: 'injuries';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensiblestats/widget-sdk",
3
- "version": "0.35.1",
3
+ "version": "0.35.2",
4
4
  "description": "Headless browser SDK for the SensibleStats chat widget gateway.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",