Interface: ViewContextValue
API / @xmachines/play-svelte / ViewContextValue
Defined in: packages/play-svelte/src/actor-context.svelte.ts:47
Framework-agnostic base for every framework’s ViewContextValue.
Holds the three fields that are identical across React, Vue, Solid, and Svelte.
registry is framework-specific (each framework has its own ComponentRegistry
type) so it is typed via TRegistry — the same generic used in BaseActorProviderProps.
Extends
BaseViewContextValue<ComponentRegistry>
Properties
| Property | Type | Description | Inherited from | Defined in |
|---|---|---|---|---|
handlers | Record<string, ActionHandler> | Action handlers resolved against the live StateStore. | BaseViewContextValue.handlers | packages/play-actor/src/abstract-actor.ts:122 |
registry | ComponentRegistry | Component registry from registryResult.registry. | BaseViewContextValue.registry | packages/play-actor/src/abstract-actor.ts:124 |
spec | PlaySpec | The current PlaySpec to render. | BaseViewContextValue.spec | packages/play-actor/src/abstract-actor.ts:120 |
store | StateStore | The active StateStore — pass to JSONUIProvider/JsonUIProvider as store to share state across providers. | BaseViewContextValue.store | packages/play-actor/src/abstract-actor.ts:126 |