@pulse-js/tools 0.1.4 → 0.1.6
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 +10 -7
- package/dist/index.cjs +496 -202
- package/dist/index.d.cts +21 -8
- package/dist/index.d.ts +21 -8
- package/dist/index.js +496 -202
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,15 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
The official visual debugging suite for the Pulse ecosystem. Inspect, monitor, and debug your reactive graph in real-time with a premium, developer-focused UI.
|
|
4
4
|
|
|
5
|
+
<div align="center">
|
|
6
|
+
<img width="383" height="575" alt="image" src="https://github.com/user-attachments/assets/9b557924-3a2d-4558-843f-f8f2793cc2f1" />
|
|
7
|
+
</div>
|
|
8
|
+
|
|
5
9
|
## Features
|
|
6
10
|
|
|
7
|
-
- **
|
|
8
|
-
- **
|
|
9
|
-
- **
|
|
10
|
-
- **Real-Time Inspection**: Visualize the status (OK, FAIL, PENDING) and values of all registered Sources and Guards instantly.
|
|
11
|
+
- **Tabbed Interface**: Switch between the standard "Inspector" list and the new "Pulse Tree" dependency graph.
|
|
12
|
+
- **Pulse Tree Visualization**: See your component hierarchy and dependency flow in a collapsible tree view.
|
|
13
|
+
- **Editable Sources**: Click on any Source value to edit it on the fly. Auto-parses JSON and primitives.
|
|
11
14
|
- **Explain API Integration**: Full support for the `guard.explain()` method, showing semantic failure reasons and dependencies.
|
|
12
|
-
- **
|
|
13
|
-
- **Framework-Agnostic**: Built as a standard Web Component, usable in any environment
|
|
15
|
+
- **Draggable & Resizable**: A floating widget that lives anywhere on your screen with intelligent positioning.
|
|
16
|
+
- **Framework-Agnostic**: Built as a standard Web Component, usable in any environment.
|
|
14
17
|
|
|
15
18
|
## Installation
|
|
16
19
|
|
|
@@ -59,7 +62,7 @@ document.body.appendChild(inspector);
|
|
|
59
62
|
- **Naming Matters**: Ensure you provide string names to your Sources and Guards (e.g., `source(val, { name: 'my-source' })`). The DevTools rely on these names to provide meaningful debugging information. Unnamed units will appear but are harder to trace.
|
|
60
63
|
- **Status Indicators**:
|
|
61
64
|
- 🟢 **Green**: OK / Active
|
|
62
|
-
- 🔴 **Red**: Fails
|
|
65
|
+
- 🔴 **Red**: Fails
|
|
63
66
|
- 🟡 **Yellow**: Pending (Async operations in flight)
|
|
64
67
|
|
|
65
68
|
## Architecture
|