@pie-players/pie-section-player-tools-shared 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 +27 -0
- package/dist/index.js +1468 -1425
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Section Player Tools Shared
|
|
2
|
+
|
|
3
|
+
Shared panel UI and helper utilities for the section-player debugger packages.
|
|
4
|
+
This package is not a custom element by itself; it provides building blocks used
|
|
5
|
+
by the event, PNP, session, TTS settings, and instrumentation debugger panels.
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
import {
|
|
11
|
+
SharedFloatingPanel,
|
|
12
|
+
getSectionControllerFromCoordinator,
|
|
13
|
+
} from "@pie-players/pie-section-player-tools-shared";
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Consumers
|
|
17
|
+
|
|
18
|
+
- `@pie-players/pie-section-player-tools-event-debugger`
|
|
19
|
+
- `@pie-players/pie-section-player-tools-pnp-debugger`
|
|
20
|
+
- `@pie-players/pie-section-player-tools-session-debugger`
|
|
21
|
+
- `@pie-players/pie-section-player-tools-tts-settings`
|
|
22
|
+
- `@pie-players/pie-section-player-tools-instrumentation-debugger`
|
|
23
|
+
|
|
24
|
+
## Related Documentation
|
|
25
|
+
|
|
26
|
+
- [Section player architecture](../section-player/ARCHITECTURE.md)
|
|
27
|
+
- [Section player client architecture tutorial](../../docs/section-player/client-architecture-tutorial.md)
|