@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 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
- - **Draggable UI**: A floating widget that lives anywhere on your screen.
8
- - **Quadrant-Aware Anchoring**: Intelligent positioning system. The panel automatically expands from the corner closest to its current position (top-left, bottom-right, etc.), ensuring the UI never jumps or floats awkwardly.
9
- - **Persistent State**: innovative positioning engine remembers exactly where you left the widget, persisting across page reloads and HMR updates.
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
- - **Glassmorphism Design**: A modern, dark-themed aesthetic that fits seamlessly into developer workflows without obstructing functionality.
13
- - **Framework-Agnostic**: Built as a standard Web Component, usable in any environment (React, Vue, Svelte, or Vanilla JS).
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 (Hover to see semantic failure reasons)
65
+ - 🔴 **Red**: Fails
63
66
  - 🟡 **Yellow**: Pending (Async operations in flight)
64
67
 
65
68
  ## Architecture