@expofp/debug 3.1.10 → 3.1.12

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.
Files changed (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @expofp/debug
2
+
3
+ Internal debug panel for the ExpoFP SDK. Bundled with `@expofp/floorplan` — no separate install.
4
+
5
+ ## Open the panel
6
+
7
+ Type `dbg123` anywhere on the page (the 6 letters, in order, no modifiers). A Debug button appears on the right edge — click it to open the panel.
8
+
9
+ ## Settings
10
+
11
+ - **Show Debug Button Overlay** — keeps the button visible across reloads.
12
+ - **Debug namespaces** — pattern for the [`debug`](https://www.npmjs.com/package/debug) npm library (e.g. `efp:*`). Applies immediately, no reload.
13
+ - Other
14
+
15
+ ## Log
16
+
17
+ Captures `console.log` / `debug` / `info` / `warn` / `error` from page load — including styled output from the `debug` library — and renders it with `%c` colors preserved. Capped at 5000 entries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expofp/debug",
3
- "version": "3.1.10",
3
+ "version": "3.1.12",
4
4
  "type": "module",
5
5
  "description": "ExpoFP SDK internal: debug utilities",
6
6
  "homepage": "https://developer.expofp.com/",