@pie-players/pie-tool-graph 0.3.43 → 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,27 @@
1
+ # Graph Tool
2
+
3
+ Interactive coordinate-grid graphing tool for PIE assessment player flows.
4
+
5
+ ## Usage
6
+
7
+ Import the package to register `<pie-tool-graph>`:
8
+
9
+ ```ts
10
+ import "@pie-players/pie-tool-graph";
11
+ ```
12
+
13
+ ```html
14
+ <pie-tool-graph visible="true" tool-id="graph"></pie-tool-graph>
15
+ ```
16
+
17
+ ## Props
18
+
19
+ | Prop | Type | Default | Description |
20
+ | --- | --- | --- | --- |
21
+ | `visible` | `boolean` | `false` | Controls whether the graph tool is visible. |
22
+ | `toolId` | `string` | `graph` | Tool identifier used by the assessment toolkit runtime context. |
23
+
24
+ ## Related Documentation
25
+
26
+ - [Tools and accommodations architecture](../../docs/tools-and-accomodations/architecture.md)
27
+ - [Tool provider system](../../docs/tools-and-accomodations/tool_provider_system.md)