@sensiblestats/widget-sdk 0.33.0 → 0.34.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/CHANGELOG.md +8 -0
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @sensiblestats/widget-sdk
|
|
2
2
|
|
|
3
|
+
## 0.34.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Fixes the Today tab collapsing to blank bars: children of the monitor scroller no longer shrink,
|
|
8
|
+
so the list scrolls instead of compressing 27 competition groups to fit. Also disambiguates
|
|
9
|
+
same-named competitions with their country, which the schedule response now carries.
|
|
10
|
+
|
|
3
11
|
## 0.33.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
package/dist/index.d.cts
CHANGED
|
@@ -643,6 +643,9 @@ interface ScheduleMatch {
|
|
|
643
643
|
interface ScheduleGroup {
|
|
644
644
|
competitionId: number;
|
|
645
645
|
competitionName: string;
|
|
646
|
+
/** Catalog country, null for continental competitions. competitionName is not an identity —
|
|
647
|
+
* a real Saturday returns four competitions all named "Premier League". */
|
|
648
|
+
competitionCountry?: string | null;
|
|
646
649
|
competitionImagePath?: string | null;
|
|
647
650
|
rank: number;
|
|
648
651
|
expandedByDefault: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -643,6 +643,9 @@ interface ScheduleMatch {
|
|
|
643
643
|
interface ScheduleGroup {
|
|
644
644
|
competitionId: number;
|
|
645
645
|
competitionName: string;
|
|
646
|
+
/** Catalog country, null for continental competitions. competitionName is not an identity —
|
|
647
|
+
* a real Saturday returns four competitions all named "Premier League". */
|
|
648
|
+
competitionCountry?: string | null;
|
|
646
649
|
competitionImagePath?: string | null;
|
|
647
650
|
rank: number;
|
|
648
651
|
expandedByDefault: boolean;
|