feat(site): add util reference pipeline (#537)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Darius Cepulis
2026-02-24 15:34:34 -06:00
committed by GitHub
co-authored by Claude Opus 4.6
parent c11395ece1
commit 78112fbefd
143 changed files with 7031 additions and 481 deletions
@@ -38,7 +38,18 @@ export class PlayerController<Store extends PlayerStore, Result = Store> impleme
#consumer: ContextConsumer<PlayerContext<Store>, PlayerControllerHost>;
#store: StoreController<Store, Result> | null = null;
/**
* @label Without Selector
* @param host - The host element that owns this controller.
* @param context - Player context to resolve the store from.
*/
constructor(host: PlayerControllerHost, context: PlayerContext<Store>);
/**
* @label With Selector
* @param host - The host element that owns this controller.
* @param context - Player context to resolve the store from.
* @param selector - Derives a value from the player store state.
*/
constructor(
host: PlayerControllerHost,
context: PlayerContext<Store>,