@matter-server/dashboard 0.2.2 → 0.2.3
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/dist/esm/pages/cluster-commands/base-cluster-commands.d.ts +25 -0
- package/dist/esm/pages/cluster-commands/base-cluster-commands.d.ts.map +1 -0
- package/dist/esm/pages/cluster-commands/base-cluster-commands.js +129 -0
- package/dist/esm/pages/cluster-commands/base-cluster-commands.js.map +6 -0
- package/dist/esm/pages/cluster-commands/clusters/level-control-commands.d.ts +29 -0
- package/dist/esm/pages/cluster-commands/clusters/level-control-commands.d.ts.map +1 -0
- package/dist/esm/pages/cluster-commands/clusters/level-control-commands.js +125 -0
- package/dist/esm/pages/cluster-commands/clusters/level-control-commands.js.map +6 -0
- package/dist/esm/pages/cluster-commands/clusters/on-off-commands.d.ts +25 -0
- package/dist/esm/pages/cluster-commands/clusters/on-off-commands.d.ts.map +1 -0
- package/dist/esm/pages/cluster-commands/clusters/on-off-commands.js +52 -0
- package/dist/esm/pages/cluster-commands/clusters/on-off-commands.js.map +6 -0
- package/dist/esm/pages/cluster-commands/index.d.ts +14 -0
- package/dist/esm/pages/cluster-commands/index.d.ts.map +1 -0
- package/dist/esm/pages/cluster-commands/index.js +16 -0
- package/dist/esm/pages/cluster-commands/index.js.map +6 -0
- package/dist/esm/pages/cluster-commands/registry.d.ts +24 -0
- package/dist/esm/pages/cluster-commands/registry.d.ts.map +1 -0
- package/dist/esm/pages/cluster-commands/registry.js +21 -0
- package/dist/esm/pages/cluster-commands/registry.js.map +6 -0
- package/dist/esm/pages/matter-cluster-view.d.ts +2 -0
- package/dist/esm/pages/matter-cluster-view.d.ts.map +1 -1
- package/dist/esm/pages/matter-cluster-view.js +32 -1
- package/dist/esm/pages/matter-cluster-view.js.map +1 -1
- package/dist/web/js/{commission-node-dialog-BJsfA4IV.js → commission-node-dialog-B6EYNztD.js} +5 -5
- package/dist/web/js/{commission-node-existing-CzRtUgBm.js → commission-node-existing-CKKStTjd.js} +4 -4
- package/dist/web/js/{commission-node-thread-FcLFz84I.js → commission-node-thread-D_Hgo4-b.js} +4 -4
- package/dist/web/js/{commission-node-wifi-C8iGfy7c.js → commission-node-wifi-DQrWnfn9.js} +4 -4
- package/dist/web/js/{dialog-box-DN32sjfR.js → dialog-box-9i64nfcC.js} +2 -2
- package/dist/web/js/{fire_event-BlsbXpOL.js → fire_event-CGgNDbLy.js} +1 -1
- package/dist/web/js/main.js +1 -1
- package/dist/web/js/{matter-dashboard-app-5UjO1Ik8.js → matter-dashboard-app-DD29PeTW.js} +415 -80
- package/dist/web/js/{node-binding-dialog-2yitVn0R.js → node-binding-dialog-DnO2DL_u.js} +3 -3
- package/dist/web/js/{outlined-text-field-BMLYwwlc.js → outlined-text-field-tv3ZtxuK.js} +2 -2
- package/dist/web/js/{prevent_default-BsT53c0u.js → prevent_default-C72e35wq.js} +1 -1
- package/package.json +3 -3
- package/src/pages/cluster-commands/base-cluster-commands.ts +122 -0
- package/src/pages/cluster-commands/clusters/level-control-commands.ts +130 -0
- package/src/pages/cluster-commands/clusters/on-off-commands.ts +57 -0
- package/src/pages/cluster-commands/index.ts +20 -0
- package/src/pages/cluster-commands/registry.ts +40 -0
- package/src/pages/matter-cluster-view.ts +41 -1
package/dist/web/js/{commission-node-dialog-BJsfA4IV.js → commission-node-dialog-B6EYNztD.js}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { r, n, t, i, b } from './matter-dashboard-app-
|
|
2
|
-
import { p as preventDefault } from './prevent_default-
|
|
1
|
+
import { r, n, t, i, b } from './matter-dashboard-app-DD29PeTW.js';
|
|
2
|
+
import { p as preventDefault } from './prevent_default-C72e35wq.js';
|
|
3
3
|
import './main.js';
|
|
4
4
|
|
|
5
5
|
var __defProp = Object.defineProperty;
|
|
@@ -44,18 +44,18 @@ let ComissionNodeDialog = class extends i {
|
|
|
44
44
|
if (!this.client.serverInfo.bluetooth_enabled) {
|
|
45
45
|
return;
|
|
46
46
|
}
|
|
47
|
-
import('./commission-node-wifi-
|
|
47
|
+
import('./commission-node-wifi-DQrWnfn9.js');
|
|
48
48
|
this._mode = "wifi";
|
|
49
49
|
}
|
|
50
50
|
_commissionThread() {
|
|
51
51
|
if (!this.client.serverInfo.bluetooth_enabled) {
|
|
52
52
|
return;
|
|
53
53
|
}
|
|
54
|
-
import('./commission-node-thread-
|
|
54
|
+
import('./commission-node-thread-D_Hgo4-b.js');
|
|
55
55
|
this._mode = "thread";
|
|
56
56
|
}
|
|
57
57
|
_commissionExisting() {
|
|
58
|
-
import('./commission-node-existing-
|
|
58
|
+
import('./commission-node-existing-CKKStTjd.js');
|
|
59
59
|
this._mode = "existing";
|
|
60
60
|
}
|
|
61
61
|
_nodeCommissioned(ev) {
|
package/dist/web/js/{commission-node-existing-CzRtUgBm.js → commission-node-existing-CKKStTjd.js}
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { r, c, n, d as clientContext, e, t, i, A, b } from './matter-dashboard-app-
|
|
2
|
-
import { f as fireEvent } from './fire_event-
|
|
3
|
-
import './outlined-text-field-
|
|
1
|
+
import { r, c, n, d as clientContext, e, t, i, A, b } from './matter-dashboard-app-DD29PeTW.js';
|
|
2
|
+
import { f as fireEvent } from './fire_event-CGgNDbLy.js';
|
|
3
|
+
import './outlined-text-field-tv3ZtxuK.js';
|
|
4
4
|
import './main.js';
|
|
5
|
-
import './prevent_default-
|
|
5
|
+
import './prevent_default-C72e35wq.js';
|
|
6
6
|
|
|
7
7
|
var __defProp = Object.defineProperty;
|
|
8
8
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
package/dist/web/js/{commission-node-thread-FcLFz84I.js → commission-node-thread-D_Hgo4-b.js}
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { r, c, n, d as clientContext, e, t, i, A, b } from './matter-dashboard-app-
|
|
2
|
-
import { f as fireEvent } from './fire_event-
|
|
3
|
-
import './outlined-text-field-
|
|
1
|
+
import { r, c, n, d as clientContext, e, t, i, A, b } from './matter-dashboard-app-DD29PeTW.js';
|
|
2
|
+
import { f as fireEvent } from './fire_event-CGgNDbLy.js';
|
|
3
|
+
import './outlined-text-field-tv3ZtxuK.js';
|
|
4
4
|
import './main.js';
|
|
5
|
-
import './prevent_default-
|
|
5
|
+
import './prevent_default-C72e35wq.js';
|
|
6
6
|
|
|
7
7
|
var __defProp = Object.defineProperty;
|
|
8
8
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { r, c, n, d as clientContext, e, t, i, A, b } from './matter-dashboard-app-
|
|
2
|
-
import { f as fireEvent } from './fire_event-
|
|
3
|
-
import './outlined-text-field-
|
|
1
|
+
import { r, c, n, d as clientContext, e, t, i, A, b } from './matter-dashboard-app-DD29PeTW.js';
|
|
2
|
+
import { f as fireEvent } from './fire_event-CGgNDbLy.js';
|
|
3
|
+
import './outlined-text-field-tv3ZtxuK.js';
|
|
4
4
|
import './main.js';
|
|
5
|
-
import './prevent_default-
|
|
5
|
+
import './prevent_default-C72e35wq.js';
|
|
6
6
|
|
|
7
7
|
var __defProp = Object.defineProperty;
|
|
8
8
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { n, t, i, b } from './matter-dashboard-app-
|
|
2
|
-
import { p as preventDefault } from './prevent_default-
|
|
1
|
+
import { n, t, i, b } from './matter-dashboard-app-DD29PeTW.js';
|
|
2
|
+
import { p as preventDefault } from './prevent_default-C72e35wq.js';
|
|
3
3
|
import './main.js';
|
|
4
4
|
|
|
5
5
|
var __defProp = Object.defineProperty;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as mixinDelegatesAria, i, _ as __decorate, n, f as e, A, b, a as i$1, t } from './matter-dashboard-app-
|
|
1
|
+
import { m as mixinDelegatesAria, i, _ as __decorate, n, f as e, A, b, a as i$1, t } from './matter-dashboard-app-DD29PeTW.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @license
|
package/dist/web/js/main.js
CHANGED
|
@@ -509,7 +509,7 @@ class MatterClient {
|
|
|
509
509
|
* SPDX-License-Identifier: Apache-2.0
|
|
510
510
|
*/
|
|
511
511
|
async function main() {
|
|
512
|
-
import('./matter-dashboard-app-
|
|
512
|
+
import('./matter-dashboard-app-DD29PeTW.js').then(function (n) { return n.s; });
|
|
513
513
|
let url = "";
|
|
514
514
|
const isProductionServer = location.origin.includes(":5580") || location.href.includes("hassio_ingress") || location.href.includes("/api/ingress/");
|
|
515
515
|
if (!isProductionServer) {
|