@matter-server/dashboard 1.1.1 → 1.1.2

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 +5 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -13,6 +13,7 @@ Please refer to https://github.com/matter-js/matterjs-server/blob/main/README.md
13
13
  ## Theme Support
14
14
 
15
15
  The dashboard supports light and dark modes with three options:
16
+
16
17
  - **Light** - Light theme
17
18
  - **Dark** - Dark theme
18
19
  - **System** - Automatically follows your operating system's theme preference
@@ -20,6 +21,7 @@ The dashboard supports light and dark modes with three options:
20
21
  Click the theme icon in the header to cycle through the modes. Your preference is saved in the browser's localStorage.
21
22
 
22
23
  You can also set the theme via URL query parameter:
24
+
23
25
  - `?theme=light` - Switch to light mode
24
26
  - `?theme=dark` - Switch to dark mode
25
27
  - `?theme=system` - Switch to system auto-detect
@@ -64,6 +66,7 @@ Other node icons:
64
66
  ### Understanding Connection Lines
65
67
 
66
68
  Connection lines represent the communication links between devices.
69
+ If the lines are missing and most data is also missing when selecting the node, the device likely does not include the "Thread Network Diagnostics" cluster, which is where most of this data comes from.
67
70
 
68
71
  **Line style:**
69
72
 
@@ -156,7 +159,7 @@ Developer mode is browser-only and is not persisted. Reloading without the `?dev
156
159
  ### What developer mode adds on a cluster view
157
160
 
158
161
  - **Per-attribute Read button** — forces an immediate read of a single attribute. On success the icon briefly flashes; on failure the raw server error is shown in a popup.
159
- - **Per-attribute Write button** — shown only for writable attributes. Opens an editor prefilled with the current value as JSON; pressing *Write* sends the exact value to the server.
160
- - **Commands panel** (collapsed by default) — lists every command the cluster reports as supported. Each entry opens a payload editor; pressing *Invoke* sends the command and shows the server response as JSON, or the raw error if the invocation fails.
162
+ - **Per-attribute Write button** — shown only for writable attributes. Opens an editor prefilled with the current value as JSON; pressing _Write_ sends the exact value to the server.
163
+ - **Commands panel** (collapsed by default) — lists every command the cluster reports as supported. Each entry opens a payload editor; pressing _Invoke_ sends the command and shows the server response as JSON, or the raw error if the invocation fails.
161
164
 
162
165
  Unknown attributes (not present in the dashboard's metadata) cannot be written. Unknown commands (in the cluster's accepted list but missing from the metadata) are not listed. All server errors are shown verbatim so the exact response from the device is visible.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matter-server/dashboard",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Dashboard for OHF Matter Server",
5
5
  "homepage": "https://github.com/matter-js/matterjs-server",
6
6
  "bugs": {
@@ -33,23 +33,23 @@
33
33
  "dependencies": {
34
34
  "@lit/context": "^1.1.6",
35
35
  "@material/web": "^2.4.1",
36
- "@matter-server/custom-clusters": "1.1.1",
37
- "@matter-server/ws-client": "1.1.1",
36
+ "@matter-server/custom-clusters": "1.1.2",
37
+ "@matter-server/ws-client": "1.1.2",
38
38
  "@mdi/js": "^7.4.47",
39
39
  "lit": "^3.3.3",
40
40
  "tslib": "^2.8.1",
41
41
  "vis-network": "^10.1.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@babel/preset-env": "^8.0.1",
45
- "@matter/main": "0.17.3",
44
+ "@babel/preset-env": "^8.0.2",
45
+ "@matter/main": "0.17.4-alpha.0-20260625-0f2168fd4",
46
46
  "@rollup/plugin-babel": "^7.1.0",
47
47
  "@rollup/plugin-commonjs": "^29.0.3",
48
48
  "@rollup/plugin-json": "^6.1.0",
49
49
  "@rollup/plugin-node-resolve": "^16.0.3",
50
50
  "@rollup/plugin-terser": "^1.0.0",
51
51
  "@rollup/plugin-typescript": "^12.3.0",
52
- "rollup": "^4.61.0",
52
+ "rollup": "^4.62.2",
53
53
  "rollup-plugin-copy": "^3.5.0",
54
54
  "serve": "^14.2.6"
55
55
  }