@wral/hsot-data 0.1.8 → 0.1.9
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/README.md +4 -4
- package/dist/define.mjs +1 -1
- package/dist/define.standalone.js +161 -146
- package/dist/{hsot-school-search-R6y64nMR.js → hsot-school-search-D1W24ixG.js} +431 -416
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ exactly one of these elements.
|
|
|
12
12
|
| `<hsot-scores>` | Scores/Schedules (the scoreboard; future dates are schedules) | `sport`, `date` (YYYY-MM-DD, deep-linkable via `?date=`; defaults to the closest matchday: today when games are on, otherwise the previous one), `season`, `refresh-interval` |
|
|
13
13
|
| `<hsot-standings>` | Standings, every conference for a sport | `sport`, `season` |
|
|
14
14
|
| `<hsot-rankings>` | The weekly Top 25 with movement + rank history | `sport`, `gender` (poll family), `season`, deep link `?poll=YYYY-MM-DD` |
|
|
15
|
-
| `<hsot-school>` | School hub: hero, team tabs, schedule, roster, honors | `school-id`, `sport` (initial tab, deep link `?sport=`), `season` |
|
|
15
|
+
| `<hsot-school>` | School hub: hero, team tabs, schedule, roster (headed by the season's roster photo when one is set; a College column appears when a player carries a commitment), honors | `school-id`, `sport` (initial tab, deep link `?sport=`), `season` |
|
|
16
16
|
| `<hsot-boxscore>` | Game detail: line score, coverage, season context | `game-id`, `refresh-interval` |
|
|
17
17
|
| `<hsot-school-search>` | "Find Your School" typeahead for the right rail (standalone: fetches `GET /schools?q=` itself, no injected client) | `api`, `school-href`, `limit`, `placeholder` |
|
|
18
18
|
|
|
@@ -118,9 +118,9 @@ The demo harness (`index.html`) runs the components against a seeded
|
|
|
118
118
|
in-memory client (`src/demo/demo-client.mjs`): a full football season with
|
|
119
119
|
live, overtime, forfeit and postponed games, nine weekly polls, and three
|
|
120
120
|
rosters. **Player names in the demo data are pseudonyms** and stay that way —
|
|
121
|
-
the minors'-names decision (approved 2026-08-19
|
|
122
|
-
|
|
123
|
-
call is made by the harness.
|
|
121
|
+
the minors'-names decision (approved 2026-08-19 for the roster-table fields;
|
|
122
|
+
the college commitment was added 2026-09-09) covers the live public surface,
|
|
123
|
+
not this repo's fixtures. No live api-hsot call is made by the harness.
|
|
124
124
|
|
|
125
125
|
## Consuming
|
|
126
126
|
|
package/dist/define.mjs
CHANGED