@pie-players/pie-section-player-tools-session-debugger 0.3.44 → 0.3.45

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 ADDED
@@ -0,0 +1,26 @@
1
+ # Section Player Session Debugger
2
+
3
+ Debug panel for inspecting section session state in section-player flows.
4
+
5
+ ## Usage
6
+
7
+ Import the package to register `<pie-section-player-tools-session-debugger>`:
8
+
9
+ ```ts
10
+ import "@pie-players/pie-section-player-tools-session-debugger";
11
+ ```
12
+
13
+ ```html
14
+ <pie-section-player-tools-session-debugger
15
+ section-id="section-1"
16
+ attempt-id="attempt-1"
17
+ ></pie-section-player-tools-session-debugger>
18
+ ```
19
+
20
+ Set the `toolkitCoordinator` property from host code so the panel can resolve
21
+ the active section controller and session state.
22
+
23
+ ## Related Documentation
24
+
25
+ - [Section player controller boundaries](../../docs/section-player/controller-boundaries.md)
26
+ - [Section player client architecture tutorial](../../docs/section-player/client-architecture-tutorial.md)