@pepperdash/mobile-control-react-app-core 1.20.4 → 1.20.5

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 (51) hide show
  1. package/dist/mobile-control-react-app-core.es.js +1579 -1501
  2. package/dist/mobile-control-react-app-core.umd.js +10 -10
  3. package/dist/shared/hooks/interfaces/useIHasSelectableItems.d.ts +2 -1
  4. package/dist/shared/hooks/interfaces/useIHasSelectableItems.d.ts.map +1 -1
  5. package/dist/store/appConfig/appConfig.hooks.d.ts +110 -0
  6. package/dist/store/appConfig/appConfig.hooks.d.ts.map +1 -0
  7. package/dist/store/appConfig/{appConfigSelectors.d.ts → appConfig.selectors.d.ts} +2 -3
  8. package/dist/store/appConfig/appConfig.selectors.d.ts.map +1 -0
  9. package/dist/store/devices/devices.hooks.d.ts +56 -0
  10. package/dist/store/devices/devices.hooks.d.ts.map +1 -0
  11. package/dist/store/devices/devices.selectors.d.ts +13 -0
  12. package/dist/store/devices/devices.selectors.d.ts.map +1 -0
  13. package/dist/store/devices/devices.slice.d.ts +4 -35
  14. package/dist/store/devices/devices.slice.d.ts.map +1 -1
  15. package/dist/store/index.d.ts +5 -5
  16. package/dist/store/index.d.ts.map +1 -1
  17. package/dist/store/rooms/rooms.hooks.d.ts +542 -0
  18. package/dist/store/rooms/rooms.hooks.d.ts.map +1 -0
  19. package/dist/store/rooms/{roomsSelectors.d.ts → rooms.selectors.d.ts} +10 -7
  20. package/dist/store/rooms/rooms.selectors.d.ts.map +1 -0
  21. package/dist/store/rooms/rooms.slice.d.ts +4 -321
  22. package/dist/store/rooms/rooms.slice.d.ts.map +1 -1
  23. package/dist/store/runtimeConfig/runtime.hooks.d.ts +277 -0
  24. package/dist/store/runtimeConfig/runtime.hooks.d.ts.map +1 -0
  25. package/dist/store/runtimeConfig/{runtimeSelectors.d.ts → runtime.selectors.d.ts} +1 -1
  26. package/dist/store/runtimeConfig/runtime.selectors.d.ts.map +1 -0
  27. package/dist/types/state/state/CommunicationMonitorState.d.ts +2 -1
  28. package/dist/types/state/state/CommunicationMonitorState.d.ts.map +1 -1
  29. package/dist/types/state/state/DeviceInfoState.d.ts +2 -1
  30. package/dist/types/state/state/DeviceInfoState.d.ts.map +1 -1
  31. package/dist/types/state/state/IBasicVolumeWithFeedbackState.d.ts +2 -1
  32. package/dist/types/state/state/IBasicVolumeWithFeedbackState.d.ts.map +1 -1
  33. package/dist/types/state/state/IHasInputsState.d.ts +2 -1
  34. package/dist/types/state/state/IHasInputsState.d.ts.map +1 -1
  35. package/dist/types/state/state/IHasSurroundSoundModesState.d.ts +2 -1
  36. package/dist/types/state/state/IHasSurroundSoundModesState.d.ts.map +1 -1
  37. package/dist/types/state/state/MatrixRoutingState.d.ts +1 -1
  38. package/dist/types/state/state/MatrixRoutingState.d.ts.map +1 -1
  39. package/dist/types/state/state/PowerState.d.ts +2 -1
  40. package/dist/types/state/state/PowerState.d.ts.map +1 -1
  41. package/dist/types/state/state/RoutingState.d.ts +2 -1
  42. package/dist/types/state/state/RoutingState.d.ts.map +1 -1
  43. package/dist/types/state/state/SwitchedOutputState.d.ts +2 -1
  44. package/dist/types/state/state/SwitchedOutputState.d.ts.map +1 -1
  45. package/package.json +2 -2
  46. package/dist/store/appConfig/appConfigSelectors.d.ts.map +0 -1
  47. package/dist/store/devices/devicesSelectors.d.ts +0 -12
  48. package/dist/store/devices/devicesSelectors.d.ts.map +0 -1
  49. package/dist/store/rooms/roomsSelectors.d.ts.map +0 -1
  50. package/dist/store/runtimeConfig/runtimeSelectors.d.ts.map +0 -1
  51. /package/dist/{style.css → mobile-control-react-app-core.css} +0 -0
@@ -1,17 +1,35 @@
1
- var q3 = Object.defineProperty;
2
- var Y3 = (t, e, o) => e in t ? q3(t, e, { enumerable: !0, configurable: !0, writable: !0, value: o }) : t[e] = o;
3
- var H = (t, e, o) => Y3(t, typeof e != "symbol" ? e + "" : e, o);
4
- import z3, { AxiosError as J3 } from "axios";
5
- import { useDispatch as X3, useSelector as Q3, Provider as N3 } from "react-redux";
6
- import { createSlice as d1, combineReducers as e2, configureStore as t2, createSelector as s2 } from "@reduxjs/toolkit";
7
- import * as a3 from "lodash";
8
- import u3, { createContext as o2, useState as W, useRef as u1, useCallback as c1, useEffect as t1, useContext as n2, useLayoutEffect as d3 } from "react";
9
- import { useNavigate as r2, useRouteError as c2, isRouteErrorResponse as l2 } from "react-router-dom";
10
- const i2 = X3.withTypes(), p = Q3.withTypes(), a2 = () => p((t) => t.appConfig.config), K8 = () => p((t) => t.appConfig.config.apiPath), G8 = () => p((t) => t.appConfig.config.logoPath), q8 = () => p((t) => t.appConfig.config.partnerMetadata), u2 = () => p((t) => t.devices);
11
- function _(t) {
12
- return p((e) => e.devices[t] ? e.devices[t] : void 0);
1
+ var Q3 = Object.defineProperty;
2
+ var N3 = (e, t, n) => t in e ? Q3(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n;
3
+ var G = (e, t, n) => N3(e, typeof t != "symbol" ? t + "" : t, n);
4
+ import e2, { AxiosError as t2 } from "axios";
5
+ import { useDispatch as s2, useSelector as n2, Provider as o2 } from "react-redux";
6
+ import { createSelector as M, createSlice as v1, combineReducers as c2, configureStore as r2 } from "@reduxjs/toolkit";
7
+ import * as f3 from "lodash";
8
+ import p3, { createContext as l2, useState as H, useRef as h1, useCallback as i1, useEffect as o1, useContext as i2, useLayoutEffect as w3 } from "react";
9
+ import { useNavigate as a2, useRouteError as u2, isRouteErrorResponse as d2 } from "react-router-dom";
10
+ const h2 = s2.withTypes(), p = n2.withTypes(), Z1 = (e) => e.appConfig, v2 = M(
11
+ Z1,
12
+ (e) => e.config
13
+ ), g2 = M(
14
+ Z1,
15
+ (e) => e.config.apiPath
16
+ ), f2 = M(
17
+ Z1,
18
+ (e) => e.config.logoPath
19
+ ), p2 = M(
20
+ Z1,
21
+ (e) => e.config.partnerMetadata
22
+ ), w2 = () => p(v2), T6 = () => p(g2), L6 = () => p(f2), P6 = () => p(p2), x3 = (e) => e.devices, x2 = M(
23
+ x3,
24
+ (e) => e.devices
25
+ ), M2 = (e) => M(
26
+ x3,
27
+ (t) => t[e] ? t[e] : void 0
28
+ ), m2 = () => p(x2);
29
+ function T(e) {
30
+ return p(M2(e));
13
31
  }
14
- const d2 = {
32
+ const Z2 = {
15
33
  config: {
16
34
  enableDev: !1,
17
35
  apiPath: "",
@@ -21,45 +39,49 @@ const d2 = {
21
39
  loginMode: "",
22
40
  modes: {}
23
41
  }
24
- }, h3 = d1({
42
+ }, M3 = v1({
25
43
  name: "appConfig",
26
- initialState: d2,
44
+ initialState: Z2,
27
45
  reducers: {
28
- setAppConfig(t, e) {
29
- t.config = e.payload;
46
+ setAppConfig(e, t) {
47
+ e.config = t.payload;
30
48
  }
31
49
  }
32
- }), h2 = h3.actions, v2 = h3.reducer, n3 = {}, v3 = d1({
50
+ }), j2 = M3.actions, C2 = M3.reducer, a3 = {}, A1 = v1({
33
51
  name: "devices",
34
- initialState: n3,
52
+ initialState: a3,
35
53
  reducers: {
36
- setDeviceState(t, e) {
37
- const o = e.payload.type, r = o.slice(o.lastIndexOf("/") + 1);
38
- if (!r) return;
39
- const c = e.payload.content, i = t[r] ?? {}, d = a3.merge(i, c);
40
- return t[r] = d, t;
54
+ setDeviceState(e, t) {
55
+ const n = t.payload.type, c = n.slice(n.lastIndexOf("/") + 1);
56
+ if (!c) return;
57
+ const r = t.payload.content, i = e[c] ?? {}, d = f3.merge(i, r);
58
+ e[c] = d;
41
59
  },
42
60
  clearDevices() {
43
- return n3;
61
+ return a3;
44
62
  }
45
63
  }
46
- }), N = v3.actions, g2 = v3.reducer, r3 = {}, g3 = d1({
64
+ }), s1 = {
65
+ setDeviceState: A1.actions.setDeviceState,
66
+ clearDevices: A1.actions.clearDevices
67
+ }, S2 = A1.reducer, u3 = {}, B1 = v1({
47
68
  name: "rooms",
48
- initialState: r3,
69
+ initialState: u3,
49
70
  reducers: {
50
- setRoomState(t, e) {
51
- const o = e.payload.type, r = o.slice(o.lastIndexOf("/") + 1);
52
- if (console.log(o, r), !r) return;
53
- const c = e.payload.content;
54
- console.log(c);
55
- const i = t[r] ?? {}, d = a3.merge(i, c);
56
- return t[r] = d, console.log(t), t;
71
+ setRoomState(e, t) {
72
+ const n = t.payload.type, c = n.slice(n.lastIndexOf("/") + 1);
73
+ if (!c) return;
74
+ const r = t.payload.content, i = e[c] ?? {}, d = f3.merge(i, r);
75
+ e[c] = d;
57
76
  },
58
77
  clearRooms() {
59
- return r3;
78
+ return u3;
60
79
  }
61
80
  }
62
- }), e1 = g3.actions, f2 = g3.reducer, p2 = {
81
+ }), n1 = {
82
+ setRoomState: B1.actions.setRoomState,
83
+ clearRooms: B1.actions.clearRooms
84
+ }, b2 = B1.reducer, I2 = {
63
85
  apiVersion: "",
64
86
  serverIsRunningOnProcessorHardware: !1,
65
87
  websocket: {
@@ -89,36 +111,36 @@ const d2 = {
89
111
  userCode: "",
90
112
  qrUrl: ""
91
113
  }
92
- }, f3 = d1({
114
+ }, m3 = v1({
93
115
  name: "runtimeConfig",
94
- initialState: p2,
116
+ initialState: I2,
95
117
  reducers: {
96
- setRuntimeConfig(t, e) {
97
- t.apiVersion = e.payload.apiVersion, t.serverIsRunningOnProcessorHardware = e.payload.serverIsRunningOnProcessorHardware;
118
+ setRuntimeConfig(e, t) {
119
+ e.apiVersion = t.payload.apiVersion, e.serverIsRunningOnProcessorHardware = t.payload.serverIsRunningOnProcessorHardware;
98
120
  },
99
- setToken(t, e) {
100
- t.token = e.payload;
121
+ setToken(e, t) {
122
+ e.token = t.payload;
101
123
  },
102
- setWebsocketIsConnected(t, e) {
103
- t.websocket.isConnected = e.payload;
124
+ setWebsocketIsConnected(e, t) {
125
+ e.websocket.isConnected = t.payload;
104
126
  },
105
- setPluginVersion(t, e) {
106
- t.pluginVersion = e.payload;
127
+ setPluginVersion(e, t) {
128
+ e.pluginVersion = t.payload;
107
129
  },
108
- setRoomData(t, e) {
109
- t.roomData = e.payload;
130
+ setRoomData(e, t) {
131
+ e.roomData = t.payload;
110
132
  },
111
- setCurrentRoomKey(t, e) {
112
- t.currentRoomKey = e.payload;
133
+ setCurrentRoomKey(e, t) {
134
+ e.currentRoomKey = t.payload;
113
135
  },
114
- setUserCode(t, e) {
115
- t.roomData.userCode = e.payload.userCode, t.roomData.qrUrl = e.payload.qrUrl;
136
+ setUserCode(e, t) {
137
+ e.roomData.userCode = t.payload.userCode, e.roomData.qrUrl = t.payload.qrUrl;
116
138
  },
117
- setTouchpanelKey(t, e) {
118
- t.touchpanelKey = e.payload;
139
+ setTouchpanelKey(e, t) {
140
+ e.touchpanelKey = t.payload;
119
141
  }
120
142
  }
121
- }), F = f3.actions, w2 = f3.reducer, x2 = {
143
+ }), W = m3.actions, R2 = m3.reducer, y2 = {
122
144
  showReconnect: !1,
123
145
  error: "",
124
146
  modalVisibility: {
@@ -126,181 +148,237 @@ const d2 = {
126
148
  showIncomingCallModal: !1
127
149
  },
128
150
  popoverVisibility: {}
129
- }, p3 = d1({
151
+ }, Z3 = v1({
130
152
  name: "ui",
131
- initialState: x2,
153
+ initialState: y2,
132
154
  reducers: {
133
- clearAllModals(t) {
134
- Object.entries(t.modalVisibility).forEach(([e]) => {
135
- t.modalVisibility[e] = !1;
155
+ clearAllModals(e) {
156
+ Object.entries(e.modalVisibility).forEach(([t]) => {
157
+ e.modalVisibility[t] = !1;
136
158
  });
137
159
  },
138
- setModalState(t, e) {
139
- t.modalVisibility[e.payload.modalType] = e.payload.value;
160
+ setModalState(e, t) {
161
+ e.modalVisibility[t.payload.modalType] = t.payload.value;
140
162
  },
141
- setShowShutdownModal(t, e) {
142
- t.modalVisibility.showShutdownModal = e.payload;
163
+ setShowShutdownModal(e, t) {
164
+ e.modalVisibility.showShutdownModal = t.payload;
143
165
  },
144
- setIncomingCallModal(t, e) {
145
- t.modalVisibility.showIncomingCallModal = e.payload;
166
+ setIncomingCallModal(e, t) {
167
+ e.modalVisibility.showIncomingCallModal = t.payload;
146
168
  },
147
- setPopoverState(t, e) {
148
- t.popoverVisibility[e.payload.popoverGroup] || (t.popoverVisibility[e.payload.popoverGroup] = {}), Object.entries(t.popoverVisibility[e.payload.popoverGroup]).forEach(([o]) => {
149
- t.popoverVisibility[e.payload.popoverGroup][o] = !1;
150
- }), t.popoverVisibility[e.payload.popoverGroup][e.payload.popoverId] = e.payload.value;
169
+ setPopoverState(e, t) {
170
+ e.popoverVisibility[t.payload.popoverGroup] || (e.popoverVisibility[t.payload.popoverGroup] = {}), Object.entries(e.popoverVisibility[t.payload.popoverGroup]).forEach(([n]) => {
171
+ e.popoverVisibility[t.payload.popoverGroup][n] = !1;
172
+ }), e.popoverVisibility[t.payload.popoverGroup][t.payload.popoverId] = t.payload.value;
151
173
  },
152
- setErrorMessage(t, e) {
153
- t.error = e.payload;
174
+ setErrorMessage(e, t) {
175
+ e.error = t.payload;
154
176
  },
155
- setShowReconnect(t, e) {
156
- t.showReconnect = e.payload;
177
+ setShowReconnect(e, t) {
178
+ e.showReconnect = t.payload;
157
179
  },
158
- setTheme(t, e) {
159
- t.theme = e.payload;
180
+ setTheme(e, t) {
181
+ e.theme = t.payload;
160
182
  }
161
183
  }
162
- }), q = p3.actions, M2 = p3.reducer, m2 = e2({
163
- appConfig: v2,
164
- runtimeConfig: w2,
165
- rooms: f2,
166
- devices: g2,
167
- ui: M2
168
- }), m = t2({
169
- reducer: m2
170
- }), Y8 = (t) => p(
171
- (e) => {
172
- var o;
173
- return e.rooms[t] ? (o = e.rooms[t]) == null ? void 0 : o.configuration : void 0;
174
- }
175
- ), D1 = (t) => p(
176
- (e) => e.rooms[t] ? e.rooms[t] : void 0
177
- ), z8 = (t) => p(
178
- (e) => {
179
- var o;
180
- return e.rooms[t] ? (o = e.rooms[t]) == null ? void 0 : o.name : void 0;
181
- }
182
- ), Z2 = (t, e) => p(
183
- (o) => {
184
- var r;
185
- return o.rooms[t] ? (r = o.rooms[t]) == null ? void 0 : r.volumes[e] : void 0;
186
- }
187
- ), j2 = (t) => p(
188
- (e) => e.rooms[t] ? e.rooms[t] : void 0
189
- ), J8 = (t) => p(
190
- (e) => {
191
- var o, r;
192
- return e.rooms[t] ? (r = (o = e.rooms[t]) == null ? void 0 : o.configuration) == null ? void 0 : r.sourceList : void 0;
193
- }
194
- ), X8 = (t) => p(
195
- (e) => {
196
- var o, r;
197
- return e.rooms[t] ? (r = (o = e.rooms[t]) == null ? void 0 : o.configuration) == null ? void 0 : r.audioControlPointList : void 0;
198
- }
199
- ), Q8 = (t) => p(
200
- (e) => {
201
- var o, r;
202
- return e.rooms[t] ? (r = (o = e.rooms[t]) == null ? void 0 : o.configuration) == null ? void 0 : r.destinations : void 0;
203
- }
204
- ), N8 = (t) => p(
205
- (e) => {
206
- var o, r;
207
- return e.rooms[t] ? (r = (o = e.rooms[t]) == null ? void 0 : o.configuration) == null ? void 0 : r.destinationList : void 0;
208
- }
209
- ), e6 = (t) => p(
210
- (e) => {
211
- var o, r;
212
- return e.rooms[t] ? (r = (o = e.rooms[t]) == null ? void 0 : o.configuration) == null ? void 0 : r.environmentalDevices : void 0;
213
- }
214
- ), t6 = (t) => p(
215
- (e) => {
216
- var o, r, c, i, d, u, f, w;
217
- return (r = (o = e.rooms[t]) == null ? void 0 : o.configuration) != null && r.destinationList.programAudio ? (d = (i = (c = e.rooms[t]) == null ? void 0 : c.configuration) == null ? void 0 : i.destinationList.programAudio) == null ? void 0 : d.sinkKey : ((w = (f = (u = e.rooms[t]) == null ? void 0 : u.configuration) == null ? void 0 : f.destinationList.defaultDisplay) == null ? void 0 : w.sinkKey) || "";
218
- }
219
- ), s6 = (t) => p(
220
- (e) => {
221
- var o, r, c;
222
- return e.rooms[t] ? (c = (r = (o = e.rooms[t]) == null ? void 0 : o.configuration) == null ? void 0 : r.destinationList.codecContent) == null ? void 0 : c.sinkKey : void 0;
223
- }
224
- ), o6 = (t) => p(
225
- (e) => {
226
- var o;
227
- return e.rooms[t] ? (o = e.rooms[t]) == null ? void 0 : o.isInCall : void 0;
228
- }
229
- ), n6 = (t) => p(
230
- (e) => {
231
- var o;
232
- return e.rooms[t] ? (o = e.rooms[t]) == null ? void 0 : o.isWarmingUp : void 0;
233
- }
234
- ), r6 = (t) => p(
235
- (e) => {
236
- var o;
237
- return e.rooms[t] ? (o = e.rooms[t]) == null ? void 0 : o.isCoolingDown : void 0;
238
- }
239
- ), c6 = (t) => p(
240
- (e) => {
241
- var o;
242
- return e.rooms[t] ? (o = e.rooms[t]) == null ? void 0 : o.isOn : void 0;
243
- }
244
- ), l6 = (t) => p(
245
- (e) => {
246
- var o;
247
- return e.rooms[t] ? (o = e.rooms[t]) == null ? void 0 : o.advancedSharingActive : void 0;
248
- }
249
- ), i6 = (t) => p(
250
- (e) => {
251
- var o;
252
- return e.rooms[t] ? (o = e.rooms[t]) == null ? void 0 : o.share : void 0;
253
- }
254
- ), a6 = (t) => s2(
184
+ }), z = Z3.actions, E2 = Z3.reducer, _2 = c2({
185
+ appConfig: C2,
186
+ runtimeConfig: R2,
187
+ rooms: b2,
188
+ devices: S2,
189
+ ui: E2
190
+ }), Z = r2({
191
+ reducer: _2
192
+ }), P = (e) => e.rooms, T2 = (e) => M(
193
+ P,
194
+ (t) => t[e] ? t[e].configuration : void 0
195
+ ), L2 = M(
196
+ P,
197
+ (e) => e.rooms
198
+ ), P2 = (e) => M(
199
+ P,
200
+ (t) => t[e] ? t[e] : void 0
201
+ ), D2 = (e) => M(
202
+ P,
203
+ (t) => t[e] ? t[e].name : void 0
204
+ ), $2 = (e, t) => M(
205
+ P,
206
+ (n) => n[e] ? n[e].volumes[t] : void 0
207
+ ), A2 = (e) => M(
208
+ P,
209
+ (t) => t[e] ? t[e] : void 0
210
+ ), B2 = (e) => M(
211
+ P,
212
+ (t) => {
213
+ var n, c;
214
+ return t[e] ? (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.sourceList : void 0;
215
+ }
216
+ ), O2 = (e) => M(
217
+ P,
218
+ (t) => {
219
+ var n, c;
220
+ return t[e] ? (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.audioControlPointList : void 0;
221
+ }
222
+ ), V2 = (e) => M(
223
+ P,
224
+ (t) => {
225
+ var n, c;
226
+ return t[e] ? (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.destinations : void 0;
227
+ }
228
+ ), k2 = (e) => M(
229
+ P,
230
+ (t) => {
231
+ var n, c;
232
+ return t[e] ? (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.destinationList : void 0;
233
+ }
234
+ ), U2 = (e) => M(
235
+ P,
236
+ (t) => {
237
+ var n, c;
238
+ return t[e] ? (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.environmentalDevices : void 0;
239
+ }
240
+ ), F2 = (e) => M(
241
+ P,
242
+ (t) => {
243
+ var n, c, r, i, d, a, f, w;
244
+ return (c = (n = t[e]) == null ? void 0 : n.configuration) != null && c.destinationList.programAudio ? (d = (i = (r = t[e]) == null ? void 0 : r.configuration) == null ? void 0 : i.destinationList.programAudio) == null ? void 0 : d.sinkKey : ((w = (f = (a = t[e]) == null ? void 0 : a.configuration) == null ? void 0 : f.destinationList.defaultDisplay) == null ? void 0 : w.sinkKey) || "";
245
+ }
246
+ ), W2 = (e) => M(
247
+ P,
248
+ (t) => {
249
+ var n, c, r;
250
+ return t[e] ? (r = (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.destinationList.codecContent) == null ? void 0 : r.sinkKey : void 0;
251
+ }
252
+ ), H2 = (e) => M(
253
+ P,
254
+ (t) => {
255
+ var n;
256
+ return t[e] ? (n = t[e]) == null ? void 0 : n.isInCall : void 0;
257
+ }
258
+ ), K2 = (e) => M(
259
+ P,
260
+ (t) => {
261
+ var n;
262
+ return t[e] ? (n = t[e]) == null ? void 0 : n.isWarmingUp : void 0;
263
+ }
264
+ ), G2 = (e) => M(
265
+ P,
266
+ (t) => {
267
+ var n;
268
+ return t[e] ? (n = t[e]) == null ? void 0 : n.isCoolingDown : void 0;
269
+ }
270
+ ), q2 = (e) => M(
271
+ P,
272
+ (t) => {
273
+ var n;
274
+ return t[e] ? (n = t[e]) == null ? void 0 : n.isOn : void 0;
275
+ }
276
+ ), Y2 = (e) => M(
277
+ P,
278
+ (t) => {
279
+ var n;
280
+ return t[e] ? (n = t[e]) == null ? void 0 : n.advancedSharingActive : void 0;
281
+ }
282
+ ), z2 = (e) => M(
283
+ P,
284
+ (t) => {
285
+ var n;
286
+ return t[e] ? (n = t[e]) == null ? void 0 : n.share : void 0;
287
+ }
288
+ ), J2 = (e) => M(
289
+ P,
290
+ (t) => {
291
+ var n, c;
292
+ return t[e] ? (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.zoomRoomControllerKey : void 0;
293
+ }
294
+ );
295
+ function D6(e) {
296
+ return p(
297
+ T2(e)
298
+ );
299
+ }
300
+ function $6() {
301
+ return p(L2);
302
+ }
303
+ function j1(e) {
304
+ return p(P2(e));
305
+ }
306
+ const A6 = j1, B6 = (e) => p(
307
+ D2(e)
308
+ ), X2 = (e, t) => p(
309
+ $2(e, t)
310
+ ), Q2 = (e) => p(A2(e)) || void 0, O6 = (e) => p(B2(e)), V6 = (e) => p(O2(e)), k6 = (e) => p(V2(e)), U6 = (e) => p(k2(e)), F6 = (e) => p(U2(e)), W6 = (e) => p(F2(e)), H6 = (e) => p(W2(e)), K6 = (e) => p(H2(e)), G6 = (e) => p(K2(e)), q6 = (e) => p(G2(e)), Y6 = (e) => p(q2(e)), z6 = (e) => p(Y2(e)), J6 = (e) => p(z2(e)), X6 = (e) => M(
255
311
  [
256
- (e, o) => o,
257
- u2,
258
- (e) => {
259
- var o, r;
260
- return (r = (o = e.rooms[t]) == null ? void 0 : o.configuration) == null ? void 0 : r.destinations;
312
+ (t, n) => n,
313
+ m2,
314
+ (t) => {
315
+ var n, c;
316
+ return (c = (n = t.rooms[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.destinations;
261
317
  }
262
318
  ],
263
- (e, o, r) => {
264
- if (console.log("roomKey", e), console.log("devices", o), console.log("destinations", r), !r) return;
265
- const c = Object.entries(r).filter(([d]) => d !== "programAudio" && d !== "codecContent").map(([, d]) => d);
266
- return Object.values(o).filter((d) => Object.values(c).includes(d.key));
267
- }
268
- )(m.getState(), t), u6 = (t) => p(
319
+ (t, n, c) => {
320
+ if (console.log("roomKey", t), console.log("devices", n), console.log("destinations", c), !c) return;
321
+ const r = Object.entries(c).filter(([d]) => d !== "programAudio" && d !== "codecContent").map(([, d]) => d);
322
+ return Object.values(n).filter((d) => Object.values(r).includes(d.key));
323
+ }
324
+ )(Z.getState(), e), Q6 = (e) => p(J2(e)), J = (e) => e.runtimeConfig, N2 = M(
325
+ J,
326
+ (e) => e.websocket.isConnected
327
+ ), e8 = M(
328
+ J,
329
+ (e) => e.currentRoomKey
330
+ ), t8 = M(
331
+ J,
332
+ (e) => e.roomData.clientId
333
+ ), s8 = M(
334
+ J,
335
+ (e) => e.roomData.systemUuid
336
+ ), n8 = M(
337
+ J,
338
+ (e) => e.roomData.userCode
339
+ ), o8 = M(
340
+ J,
341
+ (e) => e.serverIsRunningOnProcessorHardware
342
+ ), c8 = M(
343
+ J,
269
344
  (e) => {
270
- var o, r;
271
- return e.rooms[t] ? (r = (o = e.rooms[t]) == null ? void 0 : o.configuration) == null ? void 0 : r.zoomRoomControllerKey : void 0;
272
- }
273
- ), C2 = () => p((t) => t.runtimeConfig.websocket.isConnected), S2 = () => p((t) => t.runtimeConfig.currentRoomKey), b2 = () => p((t) => t.runtimeConfig.roomData.clientId), I2 = () => p((t) => t.runtimeConfig.roomData.systemUuid), y2 = () => p((t) => t.runtimeConfig.roomData.userCode), R2 = () => p((t) => t.runtimeConfig.serverIsRunningOnProcessorHardware), d6 = () => p((t) => {
274
- var e;
275
- return (e = t.runtimeConfig.roomData.config) == null ? void 0 : e.runtimeInfo;
276
- }), h6 = () => p((t) => t.runtimeConfig.touchpanelKey), v6 = () => p((t) => t.runtimeConfig.touchpanelKey !== ""), g6 = () => p((t) => t.ui.modalVisibility.showShutdownModal), f6 = () => p((t) => t.ui.modalVisibility.showIncomingCallModal), p6 = (t) => p((e) => e.ui.modalVisibility[t]), w6 = (t) => p((e) => {
277
- const o = e.ui.popoverVisibility[t];
278
- if (o)
279
- return Object.keys(o).find((r) => o[r]);
280
- }), x6 = (t, e) => p((o) => {
281
- var r;
282
- return (r = o.ui.popoverVisibility[t]) == null ? void 0 : r[e];
283
- }), E2 = () => p((t) => t.ui.error), _2 = () => p((t) => t.ui.showReconnect), M6 = () => p((t) => t.ui.theme), L1 = z3.create();
284
- function T2() {
285
- const t = i2();
345
+ var t;
346
+ return (t = e.roomData.config) == null ? void 0 : t.runtimeInfo;
347
+ }
348
+ ), r8 = M(
349
+ J,
350
+ (e) => e.touchpanelKey
351
+ ), l8 = M(
352
+ J,
353
+ (e) => e.touchpanelKey !== ""
354
+ ), i8 = () => p(N2), a8 = () => p(e8), u8 = () => p(t8), d8 = () => p(s8), h8 = () => p(n8), v8 = () => p(o8), N6 = () => p(c8), ee = () => p(r8), te = () => p(l8), se = () => p((e) => e.ui.modalVisibility.showShutdownModal), ne = () => p((e) => e.ui.modalVisibility.showIncomingCallModal), oe = (e) => p((t) => t.ui.modalVisibility[e]), ce = (e) => p((t) => {
355
+ const n = t.ui.popoverVisibility[e];
356
+ if (n)
357
+ return Object.keys(n).find((c) => n[c]);
358
+ }), re = (e, t) => p((n) => {
359
+ var c;
360
+ return (c = n.ui.popoverVisibility[e]) == null ? void 0 : c[t];
361
+ }), g8 = () => p((e) => e.ui.error), f8 = () => p((e) => e.ui.showReconnect), le = () => p((e) => e.ui.theme), O1 = e2.create();
362
+ function p8() {
363
+ const e = h2();
286
364
  return async () => {
287
365
  try {
288
- const e = location.pathname.split("/").filter((c) => c.length > 0);
289
- e.length >= 5 ? e.length = 5 : e.length = 2;
290
- const o = `/${e.join("/")}`, r = await L1.get("/_local-config/_config.local.json", { baseURL: o });
291
- if (r.status == 200 && r.data) {
292
- const c = r.data.apiPath;
293
- t(h2.setAppConfig(r.data));
294
- const i = await L1.get(`${c}/version`);
295
- i.status == 200 && i.data && t(F.setRuntimeConfig(i.data));
366
+ const t = location.pathname.split("/").filter((r) => r.length > 0);
367
+ t.length >= 5 ? t.length = 5 : t.length = 2;
368
+ const n = `/${t.join("/")}`, c = await O1.get("/_local-config/_config.local.json", { baseURL: n });
369
+ if (c.status == 200 && c.data) {
370
+ const r = c.data.apiPath;
371
+ e(j2.setAppConfig(c.data));
372
+ const i = await O1.get(`${r}/version`);
373
+ i.status == 200 && i.data && e(W.setRuntimeConfig(i.data));
296
374
  }
297
- } catch (e) {
298
- console.error("Error getting config", e);
375
+ } catch (t) {
376
+ console.error("Error getting config", t);
299
377
  }
300
378
  return !0;
301
379
  };
302
380
  }
303
- var P1 = { exports: {} }, l1 = {};
381
+ var M1 = { exports: {} }, a1 = {};
304
382
  /**
305
383
  * @license React
306
384
  * react-jsx-runtime.production.min.js
@@ -310,21 +388,21 @@ var P1 = { exports: {} }, l1 = {};
310
388
  * This source code is licensed under the MIT license found in the
311
389
  * LICENSE file in the root directory of this source tree.
312
390
  */
313
- var c3;
314
- function L2() {
315
- if (c3) return l1;
316
- c3 = 1;
317
- var t = u3, e = Symbol.for("react.element"), o = Symbol.for("react.fragment"), r = Object.prototype.hasOwnProperty, c = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, i = { key: !0, ref: !0, __self: !0, __source: !0 };
318
- function d(u, f, w) {
319
- var h, I = {}, $ = null, U = null;
320
- w !== void 0 && ($ = "" + w), f.key !== void 0 && ($ = "" + f.key), f.ref !== void 0 && (U = f.ref);
321
- for (h in f) r.call(f, h) && !i.hasOwnProperty(h) && (I[h] = f[h]);
322
- if (u && u.defaultProps) for (h in f = u.defaultProps, f) I[h] === void 0 && (I[h] = f[h]);
323
- return { $$typeof: e, type: u, key: $, ref: U, props: I, _owner: c.current };
324
- }
325
- return l1.Fragment = o, l1.jsx = d, l1.jsxs = d, l1;
391
+ var d3;
392
+ function w8() {
393
+ if (d3) return a1;
394
+ d3 = 1;
395
+ var e = p3, t = Symbol.for("react.element"), n = Symbol.for("react.fragment"), c = Object.prototype.hasOwnProperty, r = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, i = { key: !0, ref: !0, __self: !0, __source: !0 };
396
+ function d(a, f, w) {
397
+ var h, R = {}, A = null, F = null;
398
+ w !== void 0 && (A = "" + w), f.key !== void 0 && (A = "" + f.key), f.ref !== void 0 && (F = f.ref);
399
+ for (h in f) c.call(f, h) && !i.hasOwnProperty(h) && (R[h] = f[h]);
400
+ if (a && a.defaultProps) for (h in f = a.defaultProps, f) R[h] === void 0 && (R[h] = f[h]);
401
+ return { $$typeof: t, type: a, key: A, ref: F, props: R, _owner: r.current };
402
+ }
403
+ return a1.Fragment = n, a1.jsx = d, a1.jsxs = d, a1;
326
404
  }
327
- var i1 = {};
405
+ var u1 = {};
328
406
  /**
329
407
  * @license React
330
408
  * react-jsx-runtime.development.js
@@ -334,91 +412,91 @@ var i1 = {};
334
412
  * This source code is licensed under the MIT license found in the
335
413
  * LICENSE file in the root directory of this source tree.
336
414
  */
337
- var l3;
338
- function P2() {
339
- return l3 || (l3 = 1, process.env.NODE_ENV !== "production" && function() {
340
- var t = u3, e = Symbol.for("react.element"), o = Symbol.for("react.portal"), r = Symbol.for("react.fragment"), c = Symbol.for("react.strict_mode"), i = Symbol.for("react.profiler"), d = Symbol.for("react.provider"), u = Symbol.for("react.context"), f = Symbol.for("react.forward_ref"), w = Symbol.for("react.suspense"), h = Symbol.for("react.suspense_list"), I = Symbol.for("react.memo"), $ = Symbol.for("react.lazy"), U = Symbol.for("react.offscreen"), O = Symbol.iterator, z = "@@iterator";
341
- function s1(n) {
342
- if (n === null || typeof n != "object")
415
+ var h3;
416
+ function x8() {
417
+ return h3 || (h3 = 1, process.env.NODE_ENV !== "production" && function() {
418
+ var e = p3, t = Symbol.for("react.element"), n = Symbol.for("react.portal"), c = Symbol.for("react.fragment"), r = Symbol.for("react.strict_mode"), i = Symbol.for("react.profiler"), d = Symbol.for("react.provider"), a = Symbol.for("react.context"), f = Symbol.for("react.forward_ref"), w = Symbol.for("react.suspense"), h = Symbol.for("react.suspense_list"), R = Symbol.for("react.memo"), A = Symbol.for("react.lazy"), F = Symbol.for("react.offscreen"), k = Symbol.iterator, Q = "@@iterator";
419
+ function c1(o) {
420
+ if (o === null || typeof o != "object")
343
421
  return null;
344
- var l = O && n[O] || n[z];
422
+ var l = k && o[k] || o[Q];
345
423
  return typeof l == "function" ? l : null;
346
424
  }
347
- var P = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
348
- function L(n) {
425
+ var D = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
426
+ function $(o) {
349
427
  {
350
- for (var l = arguments.length, a = new Array(l > 1 ? l - 1 : 0), v = 1; v < l; v++)
351
- a[v - 1] = arguments[v];
352
- x1("error", n, a);
428
+ for (var l = arguments.length, u = new Array(l > 1 ? l - 1 : 0), v = 1; v < l; v++)
429
+ u[v - 1] = arguments[v];
430
+ C1("error", o, u);
353
431
  }
354
432
  }
355
- function x1(n, l, a) {
433
+ function C1(o, l, u) {
356
434
  {
357
- var v = P.ReactDebugCurrentFrame, C = v.getStackAddendum();
358
- C !== "" && (l += "%s", a = a.concat([C]));
359
- var b = a.map(function(M) {
360
- return String(M);
435
+ var v = D.ReactDebugCurrentFrame, S = v.getStackAddendum();
436
+ S !== "" && (l += "%s", u = u.concat([S]));
437
+ var I = u.map(function(m) {
438
+ return String(m);
361
439
  });
362
- b.unshift("Warning: " + l), Function.prototype.apply.call(console[n], console, b);
440
+ I.unshift("Warning: " + l), Function.prototype.apply.call(console[o], console, I);
363
441
  }
364
442
  }
365
- var M1 = !1, y = !1, j = !1, h1 = !1, m1 = !1, K;
366
- K = Symbol.for("react.module.reference");
367
- function A(n) {
368
- return !!(typeof n == "string" || typeof n == "function" || n === r || n === i || m1 || n === c || n === w || n === h || h1 || n === U || M1 || y || j || typeof n == "object" && n !== null && (n.$$typeof === $ || n.$$typeof === I || n.$$typeof === d || n.$$typeof === u || n.$$typeof === f || // This needs to include all possible module reference object
443
+ var S1 = !1, y = !1, C = !1, g1 = !1, b1 = !1, q;
444
+ q = Symbol.for("react.module.reference");
445
+ function O(o) {
446
+ return !!(typeof o == "string" || typeof o == "function" || o === c || o === i || b1 || o === r || o === w || o === h || g1 || o === F || S1 || y || C || typeof o == "object" && o !== null && (o.$$typeof === A || o.$$typeof === R || o.$$typeof === d || o.$$typeof === a || o.$$typeof === f || // This needs to include all possible module reference object
369
447
  // types supported by any Flight configuration anywhere since
370
448
  // we don't know which Flight build this will end up being used
371
449
  // with.
372
- n.$$typeof === K || n.getModuleId !== void 0));
450
+ o.$$typeof === q || o.getModuleId !== void 0));
373
451
  }
374
- function R(n, l, a) {
375
- var v = n.displayName;
452
+ function E(o, l, u) {
453
+ var v = o.displayName;
376
454
  if (v)
377
455
  return v;
378
- var C = l.displayName || l.name || "";
379
- return C !== "" ? a + "(" + C + ")" : a;
456
+ var S = l.displayName || l.name || "";
457
+ return S !== "" ? u + "(" + S + ")" : u;
380
458
  }
381
- function J(n) {
382
- return n.displayName || "Context";
459
+ function N(o) {
460
+ return o.displayName || "Context";
383
461
  }
384
- function V(n) {
385
- if (n == null)
462
+ function K(o) {
463
+ if (o == null)
386
464
  return null;
387
- if (typeof n.tag == "number" && L("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof n == "function")
388
- return n.displayName || n.name || null;
389
- if (typeof n == "string")
390
- return n;
391
- switch (n) {
392
- case r:
465
+ if (typeof o.tag == "number" && $("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof o == "function")
466
+ return o.displayName || o.name || null;
467
+ if (typeof o == "string")
468
+ return o;
469
+ switch (o) {
470
+ case c:
393
471
  return "Fragment";
394
- case o:
472
+ case n:
395
473
  return "Portal";
396
474
  case i:
397
475
  return "Profiler";
398
- case c:
476
+ case r:
399
477
  return "StrictMode";
400
478
  case w:
401
479
  return "Suspense";
402
480
  case h:
403
481
  return "SuspenseList";
404
482
  }
405
- if (typeof n == "object")
406
- switch (n.$$typeof) {
407
- case u:
408
- var l = n;
409
- return J(l) + ".Consumer";
483
+ if (typeof o == "object")
484
+ switch (o.$$typeof) {
485
+ case a:
486
+ var l = o;
487
+ return N(l) + ".Consumer";
410
488
  case d:
411
- var a = n;
412
- return J(a._context) + ".Provider";
489
+ var u = o;
490
+ return N(u._context) + ".Provider";
413
491
  case f:
414
- return R(n, n.render, "ForwardRef");
415
- case I:
416
- var v = n.displayName || null;
417
- return v !== null ? v : V(n.type) || "Memo";
418
- case $: {
419
- var C = n, b = C._payload, M = C._init;
492
+ return E(o, o.render, "ForwardRef");
493
+ case R:
494
+ var v = o.displayName || null;
495
+ return v !== null ? v : K(o.type) || "Memo";
496
+ case A: {
497
+ var S = o, I = S._payload, m = S._init;
420
498
  try {
421
- return V(M(b));
499
+ return K(m(I));
422
500
  } catch {
423
501
  return null;
424
502
  }
@@ -426,307 +504,303 @@ function P2() {
426
504
  }
427
505
  return null;
428
506
  }
429
- var G = Object.assign, o1 = 0, A1, B1, O1, V1, k1, U1, F1;
430
- function W1() {
507
+ var Y = Object.assign, r1 = 0, k1, U1, F1, W1, H1, K1, G1;
508
+ function q1() {
431
509
  }
432
- W1.__reactDisabledLog = !0;
433
- function m3() {
510
+ q1.__reactDisabledLog = !0;
511
+ function b3() {
434
512
  {
435
- if (o1 === 0) {
436
- A1 = console.log, B1 = console.info, O1 = console.warn, V1 = console.error, k1 = console.group, U1 = console.groupCollapsed, F1 = console.groupEnd;
437
- var n = {
513
+ if (r1 === 0) {
514
+ k1 = console.log, U1 = console.info, F1 = console.warn, W1 = console.error, H1 = console.group, K1 = console.groupCollapsed, G1 = console.groupEnd;
515
+ var o = {
438
516
  configurable: !0,
439
517
  enumerable: !0,
440
- value: W1,
518
+ value: q1,
441
519
  writable: !0
442
520
  };
443
521
  Object.defineProperties(console, {
444
- info: n,
445
- log: n,
446
- warn: n,
447
- error: n,
448
- group: n,
449
- groupCollapsed: n,
450
- groupEnd: n
522
+ info: o,
523
+ log: o,
524
+ warn: o,
525
+ error: o,
526
+ group: o,
527
+ groupCollapsed: o,
528
+ groupEnd: o
451
529
  });
452
530
  }
453
- o1++;
531
+ r1++;
454
532
  }
455
533
  }
456
- function Z3() {
534
+ function I3() {
457
535
  {
458
- if (o1--, o1 === 0) {
459
- var n = {
536
+ if (r1--, r1 === 0) {
537
+ var o = {
460
538
  configurable: !0,
461
539
  enumerable: !0,
462
540
  writable: !0
463
541
  };
464
542
  Object.defineProperties(console, {
465
- log: G({}, n, {
466
- value: A1
543
+ log: Y({}, o, {
544
+ value: k1
467
545
  }),
468
- info: G({}, n, {
469
- value: B1
546
+ info: Y({}, o, {
547
+ value: U1
470
548
  }),
471
- warn: G({}, n, {
472
- value: O1
549
+ warn: Y({}, o, {
550
+ value: F1
473
551
  }),
474
- error: G({}, n, {
475
- value: V1
552
+ error: Y({}, o, {
553
+ value: W1
476
554
  }),
477
- group: G({}, n, {
478
- value: k1
555
+ group: Y({}, o, {
556
+ value: H1
479
557
  }),
480
- groupCollapsed: G({}, n, {
481
- value: U1
558
+ groupCollapsed: Y({}, o, {
559
+ value: K1
482
560
  }),
483
- groupEnd: G({}, n, {
484
- value: F1
561
+ groupEnd: Y({}, o, {
562
+ value: G1
485
563
  })
486
564
  });
487
565
  }
488
- o1 < 0 && L("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
566
+ r1 < 0 && $("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
489
567
  }
490
568
  }
491
- var Z1 = P.ReactCurrentDispatcher, j1;
492
- function v1(n, l, a) {
569
+ var I1 = D.ReactCurrentDispatcher, R1;
570
+ function f1(o, l, u) {
493
571
  {
494
- if (j1 === void 0)
572
+ if (R1 === void 0)
495
573
  try {
496
574
  throw Error();
497
- } catch (C) {
498
- var v = C.stack.trim().match(/\n( *(at )?)/);
499
- j1 = v && v[1] || "";
575
+ } catch (S) {
576
+ var v = S.stack.trim().match(/\n( *(at )?)/);
577
+ R1 = v && v[1] || "";
500
578
  }
501
579
  return `
502
- ` + j1 + n;
580
+ ` + R1 + o;
503
581
  }
504
582
  }
505
- var C1 = !1, g1;
583
+ var y1 = !1, p1;
506
584
  {
507
- var j3 = typeof WeakMap == "function" ? WeakMap : Map;
508
- g1 = new j3();
585
+ var R3 = typeof WeakMap == "function" ? WeakMap : Map;
586
+ p1 = new R3();
509
587
  }
510
- function H1(n, l) {
511
- if (!n || C1)
588
+ function Y1(o, l) {
589
+ if (!o || y1)
512
590
  return "";
513
591
  {
514
- var a = g1.get(n);
515
- if (a !== void 0)
516
- return a;
592
+ var u = p1.get(o);
593
+ if (u !== void 0)
594
+ return u;
517
595
  }
518
596
  var v;
519
- C1 = !0;
520
- var C = Error.prepareStackTrace;
597
+ y1 = !0;
598
+ var S = Error.prepareStackTrace;
521
599
  Error.prepareStackTrace = void 0;
522
- var b;
523
- b = Z1.current, Z1.current = null, m3();
600
+ var I;
601
+ I = I1.current, I1.current = null, b3();
524
602
  try {
525
603
  if (l) {
526
- var M = function() {
604
+ var m = function() {
527
605
  throw Error();
528
606
  };
529
- if (Object.defineProperty(M.prototype, "props", {
607
+ if (Object.defineProperty(m.prototype, "props", {
530
608
  set: function() {
531
609
  throw Error();
532
610
  }
533
611
  }), typeof Reflect == "object" && Reflect.construct) {
534
612
  try {
535
- Reflect.construct(M, []);
536
- } catch (B) {
537
- v = B;
613
+ Reflect.construct(m, []);
614
+ } catch (V) {
615
+ v = V;
538
616
  }
539
- Reflect.construct(n, [], M);
617
+ Reflect.construct(o, [], m);
540
618
  } else {
541
619
  try {
542
- M.call();
543
- } catch (B) {
544
- v = B;
620
+ m.call();
621
+ } catch (V) {
622
+ v = V;
545
623
  }
546
- n.call(M.prototype);
624
+ o.call(m.prototype);
547
625
  }
548
626
  } else {
549
627
  try {
550
628
  throw Error();
551
- } catch (B) {
552
- v = B;
629
+ } catch (V) {
630
+ v = V;
553
631
  }
554
- n();
555
- }
556
- } catch (B) {
557
- if (B && v && typeof B.stack == "string") {
558
- for (var x = B.stack.split(`
559
- `), D = v.stack.split(`
560
- `), E = x.length - 1, T = D.length - 1; E >= 1 && T >= 0 && x[E] !== D[T]; )
561
- T--;
562
- for (; E >= 1 && T >= 0; E--, T--)
563
- if (x[E] !== D[T]) {
564
- if (E !== 1 || T !== 1)
632
+ o();
633
+ }
634
+ } catch (V) {
635
+ if (V && v && typeof V.stack == "string") {
636
+ for (var x = V.stack.split(`
637
+ `), B = v.stack.split(`
638
+ `), _ = x.length - 1, L = B.length - 1; _ >= 1 && L >= 0 && x[_] !== B[L]; )
639
+ L--;
640
+ for (; _ >= 1 && L >= 0; _--, L--)
641
+ if (x[_] !== B[L]) {
642
+ if (_ !== 1 || L !== 1)
565
643
  do
566
- if (E--, T--, T < 0 || x[E] !== D[T]) {
567
- var k = `
568
- ` + x[E].replace(" at new ", " at ");
569
- return n.displayName && k.includes("<anonymous>") && (k = k.replace("<anonymous>", n.displayName)), typeof n == "function" && g1.set(n, k), k;
644
+ if (_--, L--, L < 0 || x[_] !== B[L]) {
645
+ var U = `
646
+ ` + x[_].replace(" at new ", " at ");
647
+ return o.displayName && U.includes("<anonymous>") && (U = U.replace("<anonymous>", o.displayName)), typeof o == "function" && p1.set(o, U), U;
570
648
  }
571
- while (E >= 1 && T >= 0);
649
+ while (_ >= 1 && L >= 0);
572
650
  break;
573
651
  }
574
652
  }
575
653
  } finally {
576
- C1 = !1, Z1.current = b, Z3(), Error.prepareStackTrace = C;
654
+ y1 = !1, I1.current = I, I3(), Error.prepareStackTrace = S;
577
655
  }
578
- var Q = n ? n.displayName || n.name : "", Y = Q ? v1(Q) : "";
579
- return typeof n == "function" && g1.set(n, Y), Y;
656
+ var t1 = o ? o.displayName || o.name : "", X = t1 ? f1(t1) : "";
657
+ return typeof o == "function" && p1.set(o, X), X;
580
658
  }
581
- function C3(n, l, a) {
582
- return H1(n, !1);
659
+ function y3(o, l, u) {
660
+ return Y1(o, !1);
583
661
  }
584
- function S3(n) {
585
- var l = n.prototype;
662
+ function E3(o) {
663
+ var l = o.prototype;
586
664
  return !!(l && l.isReactComponent);
587
665
  }
588
- function f1(n, l, a) {
589
- if (n == null)
666
+ function w1(o, l, u) {
667
+ if (o == null)
590
668
  return "";
591
- if (typeof n == "function")
592
- return H1(n, S3(n));
593
- if (typeof n == "string")
594
- return v1(n);
595
- switch (n) {
669
+ if (typeof o == "function")
670
+ return Y1(o, E3(o));
671
+ if (typeof o == "string")
672
+ return f1(o);
673
+ switch (o) {
596
674
  case w:
597
- return v1("Suspense");
675
+ return f1("Suspense");
598
676
  case h:
599
- return v1("SuspenseList");
677
+ return f1("SuspenseList");
600
678
  }
601
- if (typeof n == "object")
602
- switch (n.$$typeof) {
679
+ if (typeof o == "object")
680
+ switch (o.$$typeof) {
603
681
  case f:
604
- return C3(n.render);
605
- case I:
606
- return f1(n.type, l, a);
607
- case $: {
608
- var v = n, C = v._payload, b = v._init;
682
+ return y3(o.render);
683
+ case R:
684
+ return w1(o.type, l, u);
685
+ case A: {
686
+ var v = o, S = v._payload, I = v._init;
609
687
  try {
610
- return f1(b(C), l, a);
688
+ return w1(I(S), l, u);
611
689
  } catch {
612
690
  }
613
691
  }
614
692
  }
615
693
  return "";
616
694
  }
617
- var n1 = Object.prototype.hasOwnProperty, K1 = {}, G1 = P.ReactDebugCurrentFrame;
618
- function p1(n) {
619
- if (n) {
620
- var l = n._owner, a = f1(n.type, n._source, l ? l.type : null);
621
- G1.setExtraStackFrame(a);
695
+ var l1 = Object.prototype.hasOwnProperty, z1 = {}, J1 = D.ReactDebugCurrentFrame;
696
+ function x1(o) {
697
+ if (o) {
698
+ var l = o._owner, u = w1(o.type, o._source, l ? l.type : null);
699
+ J1.setExtraStackFrame(u);
622
700
  } else
623
- G1.setExtraStackFrame(null);
701
+ J1.setExtraStackFrame(null);
624
702
  }
625
- function b3(n, l, a, v, C) {
703
+ function _3(o, l, u, v, S) {
626
704
  {
627
- var b = Function.call.bind(n1);
628
- for (var M in n)
629
- if (b(n, M)) {
705
+ var I = Function.call.bind(l1);
706
+ for (var m in o)
707
+ if (I(o, m)) {
630
708
  var x = void 0;
631
709
  try {
632
- if (typeof n[M] != "function") {
633
- var D = Error((v || "React class") + ": " + a + " type `" + M + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof n[M] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
634
- throw D.name = "Invariant Violation", D;
710
+ if (typeof o[m] != "function") {
711
+ var B = Error((v || "React class") + ": " + u + " type `" + m + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof o[m] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
712
+ throw B.name = "Invariant Violation", B;
635
713
  }
636
- x = n[M](l, M, v, a, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
637
- } catch (E) {
638
- x = E;
714
+ x = o[m](l, m, v, u, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
715
+ } catch (_) {
716
+ x = _;
639
717
  }
640
- x && !(x instanceof Error) && (p1(C), L("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", v || "React class", a, M, typeof x), p1(null)), x instanceof Error && !(x.message in K1) && (K1[x.message] = !0, p1(C), L("Failed %s type: %s", a, x.message), p1(null));
718
+ x && !(x instanceof Error) && (x1(S), $("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", v || "React class", u, m, typeof x), x1(null)), x instanceof Error && !(x.message in z1) && (z1[x.message] = !0, x1(S), $("Failed %s type: %s", u, x.message), x1(null));
641
719
  }
642
720
  }
643
721
  }
644
- var I3 = Array.isArray;
645
- function S1(n) {
646
- return I3(n);
722
+ var T3 = Array.isArray;
723
+ function E1(o) {
724
+ return T3(o);
647
725
  }
648
- function y3(n) {
726
+ function L3(o) {
649
727
  {
650
- var l = typeof Symbol == "function" && Symbol.toStringTag, a = l && n[Symbol.toStringTag] || n.constructor.name || "Object";
651
- return a;
728
+ var l = typeof Symbol == "function" && Symbol.toStringTag, u = l && o[Symbol.toStringTag] || o.constructor.name || "Object";
729
+ return u;
652
730
  }
653
731
  }
654
- function R3(n) {
732
+ function P3(o) {
655
733
  try {
656
- return q1(n), !1;
734
+ return X1(o), !1;
657
735
  } catch {
658
736
  return !0;
659
737
  }
660
738
  }
661
- function q1(n) {
662
- return "" + n;
739
+ function X1(o) {
740
+ return "" + o;
663
741
  }
664
- function Y1(n) {
665
- if (R3(n))
666
- return L("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", y3(n)), q1(n);
742
+ function Q1(o) {
743
+ if (P3(o))
744
+ return $("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", L3(o)), X1(o);
667
745
  }
668
- var r1 = P.ReactCurrentOwner, E3 = {
746
+ var N1 = D.ReactCurrentOwner, D3 = {
669
747
  key: !0,
670
748
  ref: !0,
671
749
  __self: !0,
672
750
  __source: !0
673
- }, z1, J1, b1;
674
- b1 = {};
675
- function _3(n) {
676
- if (n1.call(n, "ref")) {
677
- var l = Object.getOwnPropertyDescriptor(n, "ref").get;
751
+ }, e3, t3;
752
+ function $3(o) {
753
+ if (l1.call(o, "ref")) {
754
+ var l = Object.getOwnPropertyDescriptor(o, "ref").get;
678
755
  if (l && l.isReactWarning)
679
756
  return !1;
680
757
  }
681
- return n.ref !== void 0;
758
+ return o.ref !== void 0;
682
759
  }
683
- function T3(n) {
684
- if (n1.call(n, "key")) {
685
- var l = Object.getOwnPropertyDescriptor(n, "key").get;
760
+ function A3(o) {
761
+ if (l1.call(o, "key")) {
762
+ var l = Object.getOwnPropertyDescriptor(o, "key").get;
686
763
  if (l && l.isReactWarning)
687
764
  return !1;
688
765
  }
689
- return n.key !== void 0;
766
+ return o.key !== void 0;
690
767
  }
691
- function L3(n, l) {
692
- if (typeof n.ref == "string" && r1.current && l && r1.current.stateNode !== l) {
693
- var a = V(r1.current.type);
694
- b1[a] || (L('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', V(r1.current.type), n.ref), b1[a] = !0);
695
- }
768
+ function B3(o, l) {
769
+ typeof o.ref == "string" && N1.current;
696
770
  }
697
- function P3(n, l) {
771
+ function O3(o, l) {
698
772
  {
699
- var a = function() {
700
- z1 || (z1 = !0, L("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", l));
773
+ var u = function() {
774
+ e3 || (e3 = !0, $("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", l));
701
775
  };
702
- a.isReactWarning = !0, Object.defineProperty(n, "key", {
703
- get: a,
776
+ u.isReactWarning = !0, Object.defineProperty(o, "key", {
777
+ get: u,
704
778
  configurable: !0
705
779
  });
706
780
  }
707
781
  }
708
- function $3(n, l) {
782
+ function V3(o, l) {
709
783
  {
710
- var a = function() {
711
- J1 || (J1 = !0, L("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", l));
784
+ var u = function() {
785
+ t3 || (t3 = !0, $("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", l));
712
786
  };
713
- a.isReactWarning = !0, Object.defineProperty(n, "ref", {
714
- get: a,
787
+ u.isReactWarning = !0, Object.defineProperty(o, "ref", {
788
+ get: u,
715
789
  configurable: !0
716
790
  });
717
791
  }
718
792
  }
719
- var D3 = function(n, l, a, v, C, b, M) {
793
+ var k3 = function(o, l, u, v, S, I, m) {
720
794
  var x = {
721
795
  // This tag allows us to uniquely identify this as a React Element
722
- $$typeof: e,
796
+ $$typeof: t,
723
797
  // Built-in properties that belong on the element
724
- type: n,
798
+ type: o,
725
799
  key: l,
726
- ref: a,
727
- props: M,
800
+ ref: u,
801
+ props: m,
728
802
  // Record the component responsible for creating this element.
729
- _owner: b
803
+ _owner: I
730
804
  };
731
805
  return x._store = {}, Object.defineProperty(x._store, "validated", {
732
806
  configurable: !1,
@@ -742,314 +816,317 @@ function P2() {
742
816
  configurable: !1,
743
817
  enumerable: !1,
744
818
  writable: !1,
745
- value: C
819
+ value: S
746
820
  }), Object.freeze && (Object.freeze(x.props), Object.freeze(x)), x;
747
821
  };
748
- function A3(n, l, a, v, C) {
822
+ function U3(o, l, u, v, S) {
749
823
  {
750
- var b, M = {}, x = null, D = null;
751
- a !== void 0 && (Y1(a), x = "" + a), T3(l) && (Y1(l.key), x = "" + l.key), _3(l) && (D = l.ref, L3(l, C));
752
- for (b in l)
753
- n1.call(l, b) && !E3.hasOwnProperty(b) && (M[b] = l[b]);
754
- if (n && n.defaultProps) {
755
- var E = n.defaultProps;
756
- for (b in E)
757
- M[b] === void 0 && (M[b] = E[b]);
758
- }
759
- if (x || D) {
760
- var T = typeof n == "function" ? n.displayName || n.name || "Unknown" : n;
761
- x && P3(M, T), D && $3(M, T);
762
- }
763
- return D3(n, x, D, C, v, r1.current, M);
824
+ var I, m = {}, x = null, B = null;
825
+ u !== void 0 && (Q1(u), x = "" + u), A3(l) && (Q1(l.key), x = "" + l.key), $3(l) && (B = l.ref, B3(l, S));
826
+ for (I in l)
827
+ l1.call(l, I) && !D3.hasOwnProperty(I) && (m[I] = l[I]);
828
+ if (o && o.defaultProps) {
829
+ var _ = o.defaultProps;
830
+ for (I in _)
831
+ m[I] === void 0 && (m[I] = _[I]);
832
+ }
833
+ if (x || B) {
834
+ var L = typeof o == "function" ? o.displayName || o.name || "Unknown" : o;
835
+ x && O3(m, L), B && V3(m, L);
836
+ }
837
+ return k3(o, x, B, S, v, N1.current, m);
764
838
  }
765
839
  }
766
- var I1 = P.ReactCurrentOwner, X1 = P.ReactDebugCurrentFrame;
767
- function X(n) {
768
- if (n) {
769
- var l = n._owner, a = f1(n.type, n._source, l ? l.type : null);
770
- X1.setExtraStackFrame(a);
840
+ var _1 = D.ReactCurrentOwner, s3 = D.ReactDebugCurrentFrame;
841
+ function e1(o) {
842
+ if (o) {
843
+ var l = o._owner, u = w1(o.type, o._source, l ? l.type : null);
844
+ s3.setExtraStackFrame(u);
771
845
  } else
772
- X1.setExtraStackFrame(null);
846
+ s3.setExtraStackFrame(null);
773
847
  }
774
- var y1;
775
- y1 = !1;
776
- function R1(n) {
777
- return typeof n == "object" && n !== null && n.$$typeof === e;
848
+ var T1;
849
+ T1 = !1;
850
+ function L1(o) {
851
+ return typeof o == "object" && o !== null && o.$$typeof === t;
778
852
  }
779
- function Q1() {
853
+ function n3() {
780
854
  {
781
- if (I1.current) {
782
- var n = V(I1.current.type);
783
- if (n)
855
+ if (_1.current) {
856
+ var o = K(_1.current.type);
857
+ if (o)
784
858
  return `
785
859
 
786
- Check the render method of \`` + n + "`.";
860
+ Check the render method of \`` + o + "`.";
787
861
  }
788
862
  return "";
789
863
  }
790
864
  }
791
- function B3(n) {
865
+ function F3(o) {
792
866
  return "";
793
867
  }
794
- var N1 = {};
795
- function O3(n) {
868
+ var o3 = {};
869
+ function W3(o) {
796
870
  {
797
- var l = Q1();
871
+ var l = n3();
798
872
  if (!l) {
799
- var a = typeof n == "string" ? n : n.displayName || n.name;
800
- a && (l = `
873
+ var u = typeof o == "string" ? o : o.displayName || o.name;
874
+ u && (l = `
801
875
 
802
- Check the top-level render call using <` + a + ">.");
876
+ Check the top-level render call using <` + u + ">.");
803
877
  }
804
878
  return l;
805
879
  }
806
880
  }
807
- function e3(n, l) {
881
+ function c3(o, l) {
808
882
  {
809
- if (!n._store || n._store.validated || n.key != null)
883
+ if (!o._store || o._store.validated || o.key != null)
810
884
  return;
811
- n._store.validated = !0;
812
- var a = O3(l);
813
- if (N1[a])
885
+ o._store.validated = !0;
886
+ var u = W3(l);
887
+ if (o3[u])
814
888
  return;
815
- N1[a] = !0;
889
+ o3[u] = !0;
816
890
  var v = "";
817
- n && n._owner && n._owner !== I1.current && (v = " It was passed a child from " + V(n._owner.type) + "."), X(n), L('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', a, v), X(null);
891
+ o && o._owner && o._owner !== _1.current && (v = " It was passed a child from " + K(o._owner.type) + "."), e1(o), $('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', u, v), e1(null);
818
892
  }
819
893
  }
820
- function t3(n, l) {
894
+ function r3(o, l) {
821
895
  {
822
- if (typeof n != "object")
896
+ if (typeof o != "object")
823
897
  return;
824
- if (S1(n))
825
- for (var a = 0; a < n.length; a++) {
826
- var v = n[a];
827
- R1(v) && e3(v, l);
898
+ if (E1(o))
899
+ for (var u = 0; u < o.length; u++) {
900
+ var v = o[u];
901
+ L1(v) && c3(v, l);
828
902
  }
829
- else if (R1(n))
830
- n._store && (n._store.validated = !0);
831
- else if (n) {
832
- var C = s1(n);
833
- if (typeof C == "function" && C !== n.entries)
834
- for (var b = C.call(n), M; !(M = b.next()).done; )
835
- R1(M.value) && e3(M.value, l);
903
+ else if (L1(o))
904
+ o._store && (o._store.validated = !0);
905
+ else if (o) {
906
+ var S = c1(o);
907
+ if (typeof S == "function" && S !== o.entries)
908
+ for (var I = S.call(o), m; !(m = I.next()).done; )
909
+ L1(m.value) && c3(m.value, l);
836
910
  }
837
911
  }
838
912
  }
839
- function V3(n) {
913
+ function H3(o) {
840
914
  {
841
- var l = n.type;
915
+ var l = o.type;
842
916
  if (l == null || typeof l == "string")
843
917
  return;
844
- var a;
918
+ var u;
845
919
  if (typeof l == "function")
846
- a = l.propTypes;
920
+ u = l.propTypes;
847
921
  else if (typeof l == "object" && (l.$$typeof === f || // Note: Memo only checks outer props here.
848
922
  // Inner props are checked in the reconciler.
849
- l.$$typeof === I))
850
- a = l.propTypes;
923
+ l.$$typeof === R))
924
+ u = l.propTypes;
851
925
  else
852
926
  return;
853
- if (a) {
854
- var v = V(l);
855
- b3(a, n.props, "prop", v, n);
856
- } else if (l.PropTypes !== void 0 && !y1) {
857
- y1 = !0;
858
- var C = V(l);
859
- L("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", C || "Unknown");
860
- }
861
- typeof l.getDefaultProps == "function" && !l.getDefaultProps.isReactClassApproved && L("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
927
+ if (u) {
928
+ var v = K(l);
929
+ _3(u, o.props, "prop", v, o);
930
+ } else if (l.PropTypes !== void 0 && !T1) {
931
+ T1 = !0;
932
+ var S = K(l);
933
+ $("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", S || "Unknown");
934
+ }
935
+ typeof l.getDefaultProps == "function" && !l.getDefaultProps.isReactClassApproved && $("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
862
936
  }
863
937
  }
864
- function k3(n) {
938
+ function K3(o) {
865
939
  {
866
- for (var l = Object.keys(n.props), a = 0; a < l.length; a++) {
867
- var v = l[a];
940
+ for (var l = Object.keys(o.props), u = 0; u < l.length; u++) {
941
+ var v = l[u];
868
942
  if (v !== "children" && v !== "key") {
869
- X(n), L("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", v), X(null);
943
+ e1(o), $("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", v), e1(null);
870
944
  break;
871
945
  }
872
946
  }
873
- n.ref !== null && (X(n), L("Invalid attribute `ref` supplied to `React.Fragment`."), X(null));
947
+ o.ref !== null && (e1(o), $("Invalid attribute `ref` supplied to `React.Fragment`."), e1(null));
874
948
  }
875
949
  }
876
- var s3 = {};
877
- function o3(n, l, a, v, C, b) {
950
+ var l3 = {};
951
+ function i3(o, l, u, v, S, I) {
878
952
  {
879
- var M = A(n);
880
- if (!M) {
953
+ var m = O(o);
954
+ if (!m) {
881
955
  var x = "";
882
- (n === void 0 || typeof n == "object" && n !== null && Object.keys(n).length === 0) && (x += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");
883
- var D = B3();
884
- D ? x += D : x += Q1();
885
- var E;
886
- n === null ? E = "null" : S1(n) ? E = "array" : n !== void 0 && n.$$typeof === e ? (E = "<" + (V(n.type) || "Unknown") + " />", x = " Did you accidentally export a JSX literal instead of a component?") : E = typeof n, L("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", E, x);
887
- }
888
- var T = A3(n, l, a, C, b);
889
- if (T == null)
890
- return T;
891
- if (M) {
892
- var k = l.children;
893
- if (k !== void 0)
956
+ (o === void 0 || typeof o == "object" && o !== null && Object.keys(o).length === 0) && (x += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");
957
+ var B = F3();
958
+ B ? x += B : x += n3();
959
+ var _;
960
+ o === null ? _ = "null" : E1(o) ? _ = "array" : o !== void 0 && o.$$typeof === t ? (_ = "<" + (K(o.type) || "Unknown") + " />", x = " Did you accidentally export a JSX literal instead of a component?") : _ = typeof o, $("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", _, x);
961
+ }
962
+ var L = U3(o, l, u, S, I);
963
+ if (L == null)
964
+ return L;
965
+ if (m) {
966
+ var U = l.children;
967
+ if (U !== void 0)
894
968
  if (v)
895
- if (S1(k)) {
896
- for (var Q = 0; Q < k.length; Q++)
897
- t3(k[Q], n);
898
- Object.freeze && Object.freeze(k);
969
+ if (E1(U)) {
970
+ for (var t1 = 0; t1 < U.length; t1++)
971
+ r3(U[t1], o);
972
+ Object.freeze && Object.freeze(U);
899
973
  } else
900
- L("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
974
+ $("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
901
975
  else
902
- t3(k, n);
903
- }
904
- if (n1.call(l, "key")) {
905
- var Y = V(n), B = Object.keys(l).filter(function(G3) {
906
- return G3 !== "key";
907
- }), E1 = B.length > 0 ? "{key: someKey, " + B.join(": ..., ") + ": ...}" : "{key: someKey}";
908
- if (!s3[Y + E1]) {
909
- var K3 = B.length > 0 ? "{" + B.join(": ..., ") + ": ...}" : "{}";
910
- L(`A props object containing a "key" prop is being spread into JSX:
976
+ r3(U, o);
977
+ }
978
+ if (l1.call(l, "key")) {
979
+ var X = K(o), V = Object.keys(l).filter(function(X3) {
980
+ return X3 !== "key";
981
+ }), P1 = V.length > 0 ? "{key: someKey, " + V.join(": ..., ") + ": ...}" : "{key: someKey}";
982
+ if (!l3[X + P1]) {
983
+ var J3 = V.length > 0 ? "{" + V.join(": ..., ") + ": ...}" : "{}";
984
+ $(`A props object containing a "key" prop is being spread into JSX:
911
985
  let props = %s;
912
986
  <%s {...props} />
913
987
  React keys must be passed directly to JSX without using spread:
914
988
  let props = %s;
915
- <%s key={someKey} {...props} />`, E1, Y, K3, Y), s3[Y + E1] = !0;
989
+ <%s key={someKey} {...props} />`, P1, X, J3, X), l3[X + P1] = !0;
916
990
  }
917
991
  }
918
- return n === r ? k3(T) : V3(T), T;
992
+ return o === c ? K3(L) : H3(L), L;
919
993
  }
920
994
  }
921
- function U3(n, l, a) {
922
- return o3(n, l, a, !0);
995
+ function G3(o, l, u) {
996
+ return i3(o, l, u, !0);
923
997
  }
924
- function F3(n, l, a) {
925
- return o3(n, l, a, !1);
998
+ function q3(o, l, u) {
999
+ return i3(o, l, u, !1);
926
1000
  }
927
- var W3 = F3, H3 = U3;
928
- i1.Fragment = r, i1.jsx = W3, i1.jsxs = H3;
929
- }()), i1;
1001
+ var Y3 = q3, z3 = G3;
1002
+ u1.Fragment = c, u1.jsx = Y3, u1.jsxs = z3;
1003
+ }()), u1;
1004
+ }
1005
+ var v3;
1006
+ function M8() {
1007
+ return v3 || (v3 = 1, process.env.NODE_ENV === "production" ? M1.exports = w8() : M1.exports = x8()), M1.exports;
930
1008
  }
931
- process.env.NODE_ENV === "production" ? P1.exports = L2() : P1.exports = P2();
932
- var s = P1.exports;
933
- const $2 = "_mwfit_ppa3l_1", D2 = {
934
- mwfit: $2
935
- }, A2 = () => {
936
- const { reconnect: t } = S(), e = E2(), o = _2();
937
- return /* @__PURE__ */ s.jsx(s.Fragment, { children: /* @__PURE__ */ s.jsxs("div", { className: `disconnected-message ${D2.mwfit} mx-auto text-center`, children: [
1009
+ var s = M8();
1010
+ const m8 = "_mwfit_ppa3l_1", Z8 = {
1011
+ mwfit: m8
1012
+ }, j8 = () => {
1013
+ const { reconnect: e } = b(), t = g8(), n = f8();
1014
+ return /* @__PURE__ */ s.jsx(s.Fragment, { children: /* @__PURE__ */ s.jsxs("div", { className: `disconnected-message ${Z8.mwfit} mx-auto text-center`, children: [
938
1015
  /* @__PURE__ */ s.jsx("h1", { children: "Disconnected" }),
939
- e && /* @__PURE__ */ s.jsx("h5", { children: e }),
940
- o && /* @__PURE__ */ s.jsx("button", { className: "btn btn-secondary btn-lg", onClick: t, children: "Reconnect" })
1016
+ t && /* @__PURE__ */ s.jsx("h5", { children: t }),
1017
+ n && /* @__PURE__ */ s.jsx("button", { className: "btn btn-secondary btn-lg", onClick: e, children: "Reconnect" })
941
1018
  ] }) });
942
1019
  };
943
- class B2 {
1020
+ class C8 {
944
1021
  constructor() {
945
- H(this, "uuid", "current-uuid");
946
- H(this, "roomKey", "current-room-key");
947
- H(this, "code", "current-code");
948
- H(this, "expiry", "current-uuid-expires");
1022
+ G(this, "uuid", "current-uuid");
1023
+ G(this, "roomKey", "current-room-key");
1024
+ G(this, "code", "current-code");
1025
+ G(this, "expiry", "current-uuid-expires");
949
1026
  }
950
1027
  }
951
- const i3 = new B2(), w3 = o2({
1028
+ const g3 = new C8(), j3 = l2({
952
1029
  sendMessage: () => null,
953
1030
  sendSimpleMessage: () => null,
954
1031
  addEventHandler: () => null,
955
1032
  removeEventHandler: () => null,
956
1033
  reconnect: () => null
957
1034
  });
958
- function O2(t) {
959
- return sessionStorage.getItem(t) || "";
1035
+ function S8(e) {
1036
+ return sessionStorage.getItem(e) || "";
960
1037
  }
961
- function V2(t, e) {
962
- sessionStorage.setItem(t, e);
1038
+ function b8(e, t) {
1039
+ sessionStorage.setItem(e, t);
963
1040
  }
964
- const k2 = ({ children: t }) => {
965
- const [e, o] = W(), r = C2(), c = S2(), i = b2(), d = T2(), u = a2(), f = I2(), w = y2(), h = R2(), I = u1(null), [$, U] = W(), O = u1({}), z = c1(
1041
+ const I8 = ({ children: e }) => {
1042
+ const [t, n] = H(), c = i8(), r = a8(), i = u8(), d = p8(), a = w2(), f = d8(), w = h8(), h = v8(), R = h1(null), [A, F] = H(), k = h1({}), Q = i1(
966
1043
  async (y) => {
967
1044
  try {
968
- const j = await L1.get(`${y}/ui/joinroom?token=${e}`);
969
- return j.status === 200 && j.data ? (m.dispatch(F.setRoomData(j.data)), !0) : !1;
970
- } catch (j) {
971
- return console.log(j), h ? !0 : j instanceof J3 && j.response && j.response.status === 498 ? (console.error("Invalid token. Unable to join room"), m.dispatch(q.setErrorMessage(`Token ${e} is invalid. Unable to join room`)), !1) : (console.error("Error getting room data", j), j instanceof Error ? m.dispatch(q.setErrorMessage(j.message)) : m.dispatch(q.setErrorMessage("Error getting room data")), !1);
1045
+ const C = await O1.get(`${y}/ui/joinroom?token=${t}`);
1046
+ return C.status === 200 && C.data ? (Z.dispatch(W.setRoomData(C.data)), !0) : !1;
1047
+ } catch (C) {
1048
+ return console.log(C), h ? !0 : C instanceof t2 && C.response && C.response.status === 498 ? (console.error("Invalid token. Unable to join room"), Z.dispatch(z.setErrorMessage(`Token ${t} is invalid. Unable to join room`)), !1) : (console.error("Error getting room data", C), C instanceof Error ? Z.dispatch(z.setErrorMessage(C.message)) : Z.dispatch(z.setErrorMessage("Error getting room data")), !1);
972
1049
  }
973
1050
  },
974
- [e, h]
975
- ), s1 = c1(() => {
976
- const y = `${u.gatewayAppPath}?uuid=${f}&roomKey=${c}`;
1051
+ [t, h]
1052
+ ), c1 = i1(() => {
1053
+ const y = `${a.gatewayAppPath}?uuid=${f}&roomKey=${r}`;
977
1054
  window.location.href = w ? `${y}&Code=${w}` : y;
978
- }, [u.gatewayAppPath, c, f, w]), P = c1(
979
- (y, j) => {
980
- I.current && r && I.current.send(JSON.stringify({ type: y, clientId: i, content: j }));
1055
+ }, [a.gatewayAppPath, r, f, w]), D = i1(
1056
+ (y, C) => {
1057
+ R.current && c && R.current.send(JSON.stringify({ type: y, clientId: i, content: C }));
981
1058
  },
982
- [r, i]
983
- ), L = (y, j) => {
984
- P(y, { value: j });
985
- }, x1 = c1(
986
- (y, j, h1) => {
987
- O.current[y] || (O.current[y] = {}), O.current[y][j] = h1, console.log("event handler added", y, j);
1059
+ [c, i]
1060
+ ), $ = (y, C) => {
1061
+ D(y, { value: C });
1062
+ }, C1 = i1(
1063
+ (y, C, g1) => {
1064
+ k.current[y] || (k.current[y] = {}), k.current[y][C] = g1, console.log("event handler added", y, C);
988
1065
  },
989
1066
  []
990
- ), M1 = c1((y, j) => {
991
- O.current[y] && (delete O.current[y][j], console.log("event handler removed", y, j));
1067
+ ), S1 = i1((y, C) => {
1068
+ k.current[y] && (delete k.current[y][C], console.log("event handler removed", y, C));
992
1069
  }, []);
993
- return t1(() => {
994
- let j = new URLSearchParams(window.location.search).get("token");
995
- j ? (console.log("saving token: ", j), V2(i3.uuid, j)) : (j = O2(i3.uuid), console.log("loading token: ", j)), o(j), d();
996
- }, []), t1(() => {
1070
+ return o1(() => {
1071
+ let C = new URLSearchParams(window.location.search).get("token");
1072
+ C ? (console.log("saving token: ", C), b8(g3.uuid, C)) : (C = S8(g3.uuid), console.log("loading token: ", C)), n(C), d();
1073
+ }, []), o1(() => {
997
1074
  async function y() {
998
- if (console.log("effect is running"), !(!u.apiPath || $ || !e || !await z(u.apiPath)) && !I.current) {
1075
+ if (console.log("effect is running"), !(!a.apiPath || A || !t || !await Q(a.apiPath)) && !R.current) {
999
1076
  console.log("connecting to websocket");
1000
- const m1 = `${u.apiPath.replace("http", "ws")}/ui/join/${e}`, K = new WebSocket(m1);
1001
- I.current = K, K.onopen = (A) => {
1002
- console.log("connected", A.type, A.target), m.dispatch(F.setWebsocketIsConnected(!0));
1003
- }, K.onerror = (A) => {
1004
- console.log(A);
1005
- }, K.onclose = (A) => {
1006
- if (console.log("disconnected: ", A.reason, A.code), A.code === 4e3) {
1007
- console.log("user code changed"), m.dispatch(F.setUserCode({ userCode: "", qrUrl: "" })), m.dispatch(q.setErrorMessage("User code changed. Click reconnect to enter the new code")), m.dispatch(q.setShowReconnect(!0)), m.dispatch(F.setWebsocketIsConnected(!1)), m.dispatch(N.clearDevices()), m.dispatch(e1.clearRooms());
1077
+ const b1 = `${a.apiPath.replace("http", "ws")}/ui/join/${t}`, q = new WebSocket(b1);
1078
+ R.current = q, q.onopen = (O) => {
1079
+ console.log("connected", O.type, O.target), Z.dispatch(W.setWebsocketIsConnected(!0));
1080
+ }, q.onerror = (O) => {
1081
+ console.log(O);
1082
+ }, q.onclose = (O) => {
1083
+ if (console.log("disconnected: ", O.reason, O.code), O.code === 4e3) {
1084
+ console.log("user code changed"), Z.dispatch(W.setUserCode({ userCode: "", qrUrl: "" })), Z.dispatch(z.setErrorMessage("User code changed. Click reconnect to enter the new code")), Z.dispatch(z.setShowReconnect(!0)), Z.dispatch(W.setWebsocketIsConnected(!1)), Z.dispatch(s1.clearDevices()), Z.dispatch(n1.clearRooms());
1008
1085
  return;
1009
1086
  }
1010
- if (A.code === 4001 && !h) {
1011
- console.log("processor disconnected"), m.dispatch(q.setErrorMessage("Processor has disconnected. Click Reconnect")), m.dispatch(q.setShowReconnect(!0)), m.dispatch(F.setWebsocketIsConnected(!1)), m.dispatch(N.clearDevices()), m.dispatch(e1.clearRooms());
1087
+ if (O.code === 4001 && !h) {
1088
+ console.log("processor disconnected"), Z.dispatch(z.setErrorMessage("Processor has disconnected. Click Reconnect")), Z.dispatch(z.setShowReconnect(!0)), Z.dispatch(W.setWebsocketIsConnected(!1)), Z.dispatch(s1.clearDevices()), Z.dispatch(n1.clearRooms());
1012
1089
  return;
1013
1090
  }
1014
- if (A.code === 4002) {
1015
- console.log("room combination changed"), m.dispatch(q.setErrorMessage("Room combination changed. Click Reconnect to re-join the room")), m.dispatch(q.setShowReconnect(!0)), m.dispatch(F.setWebsocketIsConnected(!1)), m.dispatch(N.clearDevices()), m.dispatch(e1.clearRooms());
1091
+ if (O.code === 4002) {
1092
+ console.log("room combination changed"), Z.dispatch(z.setErrorMessage("Room combination changed. Click Reconnect to re-join the room")), Z.dispatch(z.setShowReconnect(!0)), Z.dispatch(W.setWebsocketIsConnected(!1)), Z.dispatch(s1.clearDevices()), Z.dispatch(n1.clearRooms());
1016
1093
  return;
1017
1094
  }
1018
- if (I.current)
1095
+ if (R.current)
1019
1096
  console.log("WebSocket closed by server.");
1020
1097
  else {
1021
1098
  console.log("WebSocket closed by client.");
1022
1099
  return;
1023
1100
  }
1024
- $ || (m.dispatch(F.setWebsocketIsConnected(!1)), m.dispatch(N.clearDevices()), m.dispatch(e1.clearRooms()), U(!0), setTimeout(() => U(void 0), 5e3));
1025
- }, K.onmessage = (A) => {
1101
+ A || (Z.dispatch(W.setWebsocketIsConnected(!1)), Z.dispatch(s1.clearDevices()), Z.dispatch(n1.clearRooms()), F(!0), setTimeout(() => F(void 0), 5e3));
1102
+ }, q.onmessage = (O) => {
1026
1103
  try {
1027
- const R = JSON.parse(A.data);
1028
- if (console.log(R), R.type === "close") {
1029
- K.close(4001, R.content);
1104
+ const E = JSON.parse(O.data);
1105
+ if (console.log(E), E.type === "close") {
1106
+ q.close(4001, E.content);
1030
1107
  return;
1031
1108
  }
1032
- if (R.type.startsWith("/system/"))
1033
- switch (R.type) {
1109
+ if (E.type.startsWith("/system/"))
1110
+ switch (E.type) {
1034
1111
  case "/system/touchpanelKey":
1035
- m.dispatch(
1036
- F.setTouchpanelKey(
1037
- R.content
1112
+ Z.dispatch(
1113
+ W.setTouchpanelKey(
1114
+ E.content
1038
1115
  )
1039
1116
  );
1040
1117
  break;
1041
1118
  case "/system/roomKey": {
1042
- m.dispatch(e1.clearRooms()), m.dispatch(N.clearDevices()), m.dispatch(
1043
- F.setCurrentRoomKey(
1044
- R.content
1119
+ Z.dispatch(n1.clearRooms()), Z.dispatch(s1.clearDevices()), Z.dispatch(
1120
+ W.setCurrentRoomKey(
1121
+ E.content
1045
1122
  )
1046
1123
  );
1047
1124
  break;
1048
1125
  }
1049
1126
  case "/system/userCodeChanged":
1050
- m.dispatch(
1051
- F.setUserCode(
1052
- R.content
1127
+ Z.dispatch(
1128
+ W.setUserCode(
1129
+ E.content
1053
1130
  )
1054
1131
  );
1055
1132
  break;
@@ -1057,539 +1134,539 @@ const k2 = ({ children: t }) => {
1057
1134
  window.location.reload();
1058
1135
  break;
1059
1136
  default:
1060
- console.log("unhandled system message", R);
1137
+ console.log("unhandled system message", E);
1061
1138
  break;
1062
1139
  }
1063
- else if (R.type.startsWith("/event/")) {
1064
- console.log("event message received", R);
1065
- const J = O.current[R.type];
1066
- J || console.log("no handlers found for event type", R.type), J && Object.values(J).forEach((V) => {
1140
+ else if (E.type.startsWith("/event/")) {
1141
+ console.log("event message received", E);
1142
+ const N = k.current[E.type];
1143
+ N || console.log("no handlers found for event type", E.type), N && Object.values(N).forEach((K) => {
1067
1144
  try {
1068
- V(R);
1069
- } catch (G) {
1070
- console.error(G);
1145
+ K(E);
1146
+ } catch (Y) {
1147
+ console.error(Y);
1071
1148
  }
1072
1149
  });
1073
- } else R.type.startsWith("/room/") ? m.dispatch(e1.setRoomState(R)) : R.type.startsWith("/device/") && m.dispatch(N.setDeviceState(R));
1074
- } catch (R) {
1075
- console.log(R);
1150
+ } else E.type.startsWith("/room/") ? Z.dispatch(n1.setRoomState(E)) : E.type.startsWith("/device/") && Z.dispatch(s1.setDeviceState(E));
1151
+ } catch (E) {
1152
+ console.log(E);
1076
1153
  }
1077
1154
  };
1078
1155
  }
1079
1156
  }
1080
1157
  return y(), () => {
1081
- I.current && I.current.close(), I.current = null;
1158
+ R.current && R.current.close(), R.current = null;
1082
1159
  };
1083
- }, [u.apiPath, z, e, $, h]), t1(() => {
1084
- !c || !r || (console.log("clientId: ", i), i && (console.log("requesting status from room: ", c), P(`/room/${c}/status`, null)));
1085
- }, [c, i, r, P]), /* @__PURE__ */ s.jsx(
1086
- w3.Provider,
1160
+ }, [a.apiPath, Q, t, A, h]), o1(() => {
1161
+ !r || !c || (console.log("clientId: ", i), i && (console.log("requesting status from room: ", r), D(`/room/${r}/status`, null)));
1162
+ }, [r, i, c, D]), /* @__PURE__ */ s.jsx(
1163
+ j3.Provider,
1087
1164
  {
1088
1165
  value: {
1089
- sendMessage: P,
1090
- sendSimpleMessage: L,
1091
- addEventHandler: x1,
1092
- removeEventHandler: M1,
1093
- reconnect: s1
1166
+ sendMessage: D,
1167
+ sendSimpleMessage: $,
1168
+ addEventHandler: C1,
1169
+ removeEventHandler: S1,
1170
+ reconnect: c1
1094
1171
  },
1095
- children: r ? t : /* @__PURE__ */ s.jsx(A2, {})
1172
+ children: c ? e : /* @__PURE__ */ s.jsx(j8, {})
1096
1173
  }
1097
1174
  );
1098
- }, m6 = ({ children: t }) => /* @__PURE__ */ s.jsx(N3, { store: m, children: /* @__PURE__ */ s.jsx(k2, { children: t }) });
1099
- function S() {
1100
- return n2(w3);
1175
+ }, ie = ({ children: e }) => /* @__PURE__ */ s.jsx(o2, { store: Z, children: /* @__PURE__ */ s.jsx(I8, { children: e }) });
1176
+ function b() {
1177
+ return i2(j3);
1101
1178
  }
1102
- function U2({
1103
- onPress: t,
1104
- onRelease: e,
1105
- onHold: o,
1106
- holdTimeMs: r = 500
1179
+ function R8({
1180
+ onPress: e,
1181
+ onRelease: t,
1182
+ onHold: n,
1183
+ holdTimeMs: c = 500
1107
1184
  }) {
1108
- const c = u1(null), i = u1(!1);
1185
+ const r = h1(null), i = h1(!1);
1109
1186
  function d() {
1110
- i.current = !0, t == null || t(), c.current = setTimeout(() => {
1111
- o == null || o(), c.current = null;
1112
- }, r);
1187
+ i.current = !0, e == null || e(), r.current = setTimeout(() => {
1188
+ n == null || n(), r.current = null;
1189
+ }, c);
1113
1190
  }
1114
- function u() {
1115
- i.current = !1, e == null || e(), c.current && (clearTimeout(c.current), c.current = null);
1191
+ function a() {
1192
+ i.current = !1, t == null || t(), r.current && (clearTimeout(r.current), r.current = null);
1116
1193
  }
1117
1194
  function f() {
1118
- i.current && u();
1195
+ i.current && a();
1119
1196
  }
1120
1197
  return {
1121
1198
  onPointerDown: d,
1122
- onPointerUp: u,
1199
+ onPointerUp: a,
1123
1200
  onPointerLeave: f
1124
1201
  };
1125
1202
  }
1126
- function g(t, e) {
1127
- const { sendMessage: r } = S(), c = u1(null);
1203
+ function g(e, t) {
1204
+ const { sendMessage: c } = b(), r = h1(null);
1128
1205
  function i() {
1129
- r(`${t}/${e}`, { value: "pressed" }), c.current || (c.current = setInterval(() => {
1130
- r(`${t}/${e}`, { value: "held" });
1206
+ c(`${e}/${t}`, { value: "pressed" }), r.current || (r.current = setInterval(() => {
1207
+ c(`${e}/${t}`, { value: "held" });
1131
1208
  }, 250));
1132
1209
  }
1133
1210
  function d() {
1134
- c.current && (clearInterval(c.current), c.current = null), r(`${t}/${e}`, { value: "released" });
1211
+ r.current && (clearInterval(r.current), r.current = null), c(`${e}/${t}`, { value: "released" });
1135
1212
  }
1136
- return U2({ onPress: i, onRelease: d });
1213
+ return R8({ onPress: i, onRelease: d });
1137
1214
  }
1138
- function x3(t, e) {
1139
- const { sendMessage: o, sendSimpleMessage: r } = S(), c = g(`${t}`, "volumeUp"), i = g(`${t}`, "volumeDown");
1140
- return e ? {
1141
- volumeState: e,
1142
- volumeUp: c,
1215
+ function C3(e, t) {
1216
+ const { sendMessage: n, sendSimpleMessage: c } = b(), r = g(`${e}`, "volumeUp"), i = g(`${e}`, "volumeDown");
1217
+ return t ? {
1218
+ volumeState: t,
1219
+ volumeUp: r,
1143
1220
  volumeDown: i,
1144
- setLevel: (h) => r(`${t}/level`, h),
1145
- muteToggle: () => o(`${t}/muteToggle`, null),
1146
- muteOn: () => o(`${t}/muteOn`, null),
1147
- muteOff: () => o(`${t}/muteOff`, null)
1221
+ setLevel: (h) => c(`${e}/level`, h),
1222
+ muteToggle: () => n(`${e}/muteToggle`, null),
1223
+ muteOn: () => n(`${e}/muteOn`, null),
1224
+ muteOff: () => n(`${e}/muteOff`, null)
1148
1225
  } : void 0;
1149
1226
  }
1150
- function Z6(t, e) {
1151
- const { sendMessage: o, sendSimpleMessage: r } = S(), c = g(`${t}`, "volumeUp"), i = g(`${t}`, "volumeDown");
1152
- return e ? {
1153
- volumeState: e,
1154
- volumeUp: c,
1227
+ function ae(e, t) {
1228
+ const { sendMessage: n, sendSimpleMessage: c } = b(), r = g(`${e}`, "volumeUp"), i = g(`${e}`, "volumeDown");
1229
+ return t ? {
1230
+ volumeState: t,
1231
+ volumeUp: r,
1155
1232
  volumeDown: i,
1156
- setLevel: (h) => r(`${t}/level`, h),
1157
- muteToggle: () => o(`${t}/muteToggle`, null),
1158
- muteOn: () => o(`${t}/muteOn`, null),
1159
- muteOff: () => o(`${t}/muteOff`, null)
1233
+ setLevel: (h) => c(`${e}/level`, h),
1234
+ muteToggle: () => n(`${e}/muteToggle`, null),
1235
+ muteOn: () => n(`${e}/muteOn`, null),
1236
+ muteOff: () => n(`${e}/muteOff`, null)
1160
1237
  } : void 0;
1161
1238
  }
1162
- function F2(t) {
1163
- const e = _(t), o = `/device/${t}`;
1164
- return x3(o, e == null ? void 0 : e.volume);
1239
+ function y8(e) {
1240
+ const t = T(e), n = `/device/${e}`;
1241
+ return C3(n, t == null ? void 0 : t.volume);
1165
1242
  }
1166
- function M3(t) {
1167
- const { sendMessage: e } = S();
1243
+ function S3(e) {
1244
+ const { sendMessage: t } = b();
1168
1245
  return { powerOn: () => {
1169
- e(`/device/${t}/powerOn`, null);
1246
+ t(`/device/${e}/powerOn`, null);
1170
1247
  }, powerOff: () => {
1171
- e(`/device/${t}/powerOff`, null);
1248
+ t(`/device/${e}/powerOff`, null);
1172
1249
  }, powerToggle: () => {
1173
- e(`/device/${t}/powerToggle`, null);
1250
+ t(`/device/${e}/powerToggle`, null);
1174
1251
  } };
1175
1252
  }
1176
- function $1(t) {
1177
- const { sendMessage: e } = S(), o = _(t);
1178
- return console.log("deviceState", o), o ? { itemsState: o, selectItem: (c) => {
1179
- e(`/device/${t}/${c}`, null);
1253
+ function V1(e) {
1254
+ const { sendMessage: t } = b(), n = T(e);
1255
+ return console.log("deviceState", n), n ? { itemsState: n, selectItem: (r) => {
1256
+ t(`/device/${e}/${r}`, null);
1180
1257
  } } : void 0;
1181
1258
  }
1182
- function W2(t) {
1183
- const { sendMessage: e } = S(), o = _(t), r = () => {
1184
- e(`/device/${t}/setDefaultChannelLevels`, null);
1185
- }, c = () => {
1186
- if ((o == null ? void 0 : o.levelControls) === void 0) return;
1187
- Object.keys(o == null ? void 0 : o.levelControls).forEach((u) => {
1188
- e(`/device/${t}/${u}/fullStatus`, null);
1259
+ function E8(e) {
1260
+ const { sendMessage: t } = b(), n = T(e), c = () => {
1261
+ t(`/device/${e}/setDefaultChannelLevels`, null);
1262
+ }, r = () => {
1263
+ if ((n == null ? void 0 : n.levelControls) === void 0) return;
1264
+ Object.keys(n == null ? void 0 : n.levelControls).forEach((a) => {
1265
+ t(`/device/${e}/${a}/fullStatus`, null);
1189
1266
  });
1190
1267
  };
1191
- return o ? { levelControls: o.levelControls, setDefaultChannelLevels: r, getFullStatus: c } : void 0;
1268
+ return n ? { levelControls: n.levelControls, setDefaultChannelLevels: c, getFullStatus: r } : void 0;
1192
1269
  }
1193
- function j6(t) {
1194
- const e = _(t), o = M3(t), r = $1(t), c = $1(t), i = F2(t), d = W2(t);
1195
- if (e)
1270
+ function ue(e) {
1271
+ const t = T(e), n = S3(e), c = V1(e), r = V1(e), i = y8(e), d = E8(e);
1272
+ if (t)
1196
1273
  return {
1197
- avrState: e,
1198
- powerControl: o,
1199
- inputControl: r,
1200
- surroundSoundModes: c,
1274
+ avrState: t,
1275
+ powerControl: n,
1276
+ inputControl: c,
1277
+ surroundSoundModes: r,
1201
1278
  surroundChannels: d,
1202
1279
  mainVolumeControl: i
1203
1280
  };
1204
1281
  }
1205
- const C6 = ({ className: t }) => {
1206
- const [e, o] = W();
1207
- return t1(() => {
1282
+ const de = ({ className: e }) => {
1283
+ const [t, n] = H();
1284
+ return o1(() => {
1208
1285
  setInterval(() => {
1209
- const r = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
1210
- o(r);
1286
+ const c = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
1287
+ n(c);
1211
1288
  }, 1e3);
1212
- }, []), /* @__PURE__ */ s.jsxs("div", { className: t, children: [
1213
- e,
1289
+ }, []), /* @__PURE__ */ s.jsxs("div", { className: e, children: [
1290
+ t,
1214
1291
  " new change"
1215
1292
  ] });
1216
1293
  };
1217
- function S6(t) {
1218
- const { sendMessage: e } = S(), o = _(t), r = `/device/${t}`;
1219
- return o ? { state: o, recallPreset: (d, u) => {
1220
- e(`${r}/presets/recall`, { deviceKey: d, preset: u });
1294
+ function he(e) {
1295
+ const { sendMessage: t } = b(), n = T(e), c = `/device/${e}`;
1296
+ return n ? { state: n, recallPreset: (d, a) => {
1297
+ t(`${c}/presets/recall`, { deviceKey: d, preset: a });
1221
1298
  }, savePresets: (d) => {
1222
- e(`${r}/presets/save`, d);
1299
+ t(`${c}/presets/save`, d);
1223
1300
  } } : void 0;
1224
1301
  }
1225
- function b6(t) {
1226
- const e = _(t);
1227
- if (e)
1228
- return { endpointState: e };
1302
+ function ve(e) {
1303
+ const t = T(e);
1304
+ if (t)
1305
+ return { endpointState: t };
1229
1306
  }
1230
- function I6(t) {
1231
- const e = `/device/${t}`, o = g(e, "chanUp"), r = g(e, "chanDown"), c = g(e, "lastChan"), i = g(e, "guide"), d = g(e, "info"), u = g(e, "exit");
1232
- return { channelUp: o, channelDown: r, lastChannel: c, guide: i, info: d, exit: u };
1307
+ function ge(e) {
1308
+ const t = `/device/${e}`, n = g(t, "chanUp"), c = g(t, "chanDown"), r = g(t, "lastChan"), i = g(t, "guide"), d = g(t, "info"), a = g(t, "exit");
1309
+ return { channelUp: n, channelDown: c, lastChannel: r, guide: i, info: d, exit: a };
1233
1310
  }
1234
- function y6(t) {
1235
- const e = `/device/${t}`, o = g(e, "red"), r = g(e, "green"), c = g(e, "yellow"), i = g(e, "blue");
1236
- return { red: o, green: r, yellow: c, blue: i };
1311
+ function fe(e) {
1312
+ const t = `/device/${e}`, n = g(t, "red"), c = g(t, "green"), r = g(t, "yellow"), i = g(t, "blue");
1313
+ return { red: n, green: c, yellow: r, blue: i };
1237
1314
  }
1238
- function R6(t) {
1239
- const e = _(t);
1240
- if (e)
1315
+ function pe(e) {
1316
+ const t = T(e);
1317
+ if (t)
1241
1318
  return {
1242
- communicationMonitorState: e
1319
+ communicationMonitorState: t
1243
1320
  };
1244
1321
  }
1245
- function E6(t) {
1246
- const e = _(t);
1247
- if (e)
1248
- return e.deviceInfo || void 0;
1322
+ function we(e) {
1323
+ const t = T(e);
1324
+ if (t)
1325
+ return t.deviceInfo || void 0;
1249
1326
  }
1250
- function _6(t) {
1251
- const e = `/device/${t}`, o = g(e, "up"), r = g(e, "down"), c = g(e, "left"), i = g(e, "right"), d = g(e, "select"), u = g(e, "menu"), f = g(e, "exit");
1252
- return { up: o, down: r, left: c, right: i, select: d, menu: u, exit: f };
1327
+ function xe(e) {
1328
+ const t = `/device/${e}`, n = g(t, "up"), c = g(t, "down"), r = g(t, "left"), i = g(t, "right"), d = g(t, "select"), a = g(t, "menu"), f = g(t, "exit");
1329
+ return { up: n, down: c, left: r, right: i, select: d, menu: a, exit: f };
1253
1330
  }
1254
- function T6(t) {
1255
- const { sendMessage: e } = S();
1256
- return { recallPreset: (r) => {
1257
- e(`/device/${t}/recallPreset`, r);
1331
+ function Me(e) {
1332
+ const { sendMessage: t } = b();
1333
+ return { recallPreset: (c) => {
1334
+ t(`/device/${e}/recallPreset`, c);
1258
1335
  } };
1259
1336
  }
1260
- function L6(t) {
1261
- const e = `/device/${t}`, o = g(e, "dvrList"), r = g(e, "record");
1262
- return { dvrList: o, record: r };
1337
+ function me(e) {
1338
+ const t = `/device/${e}`, n = g(t, "dvrList"), c = g(t, "record");
1339
+ return { dvrList: n, record: c };
1263
1340
  }
1264
- function P6(t) {
1265
- const { sendMessage: e } = S(), o = _(t);
1266
- return o ? { roomCombinerState: o, setAutoMode: () => {
1267
- e(`/device/${t}/setAutoMode`, null);
1341
+ function Ze(e) {
1342
+ const { sendMessage: t } = b(), n = T(e);
1343
+ return n ? { roomCombinerState: n, setAutoMode: () => {
1344
+ t(`/device/${e}/setAutoMode`, null);
1268
1345
  }, setManualMode: () => {
1269
- e(`/device/${t}/setManualMode`, null);
1346
+ t(`/device/${e}/setManualMode`, null);
1270
1347
  }, toggleMode: () => {
1271
- e(`/device/${t}/toggleMode`, null);
1348
+ t(`/device/${e}/toggleMode`, null);
1272
1349
  }, togglePartitionState: (f) => {
1273
- e(`/device/${t}/togglePartitionState`, f);
1350
+ t(`/device/${e}/togglePartitionState`, f);
1274
1351
  }, setRoomCombinationScenario: (f) => {
1275
- e(`/device/${t}/setRoomCombinationScenario`, f);
1352
+ t(`/device/${e}/setRoomCombinationScenario`, f);
1276
1353
  } } : void 0;
1277
1354
  }
1278
- function $6(t) {
1279
- const e = _(t);
1280
- if (e)
1281
- return { state: e };
1355
+ function je(e) {
1356
+ const t = T(e);
1357
+ if (t)
1358
+ return { state: t };
1282
1359
  }
1283
- function D6(t) {
1284
- const { sendMessage: e, sendSimpleMessage: o } = S(), r = _(t), c = j2(t), i = r || c;
1360
+ function Ce(e) {
1361
+ const { sendMessage: t, sendSimpleMessage: n } = b(), c = T(e), r = Q2(e), i = c || r;
1285
1362
  return i ? {
1286
1363
  levelState: i,
1287
- setLevel: (h, I) => o(`${h}/level`, I),
1288
- muteToggle: (h) => e(`${h}/muteToggle`, null),
1289
- muteOn: (h) => e(`${h}/muteOn`, null),
1290
- muteOff: (h) => e(`${h}/muteOff`, null)
1364
+ setLevel: (h, R) => n(`${h}/level`, R),
1365
+ muteToggle: (h) => t(`${h}/muteToggle`, null),
1366
+ muteOn: (h) => t(`${h}/muteOn`, null),
1367
+ muteOff: (h) => t(`${h}/muteOff`, null)
1291
1368
  } : void 0;
1292
1369
  }
1293
- function A6(t) {
1294
- const { sendMessage: e } = S(), o = _(t);
1295
- return o ? { lightingState: o, selectScene: (c) => {
1296
- e(`/device/${t}/selectScene`, c);
1370
+ function Se(e) {
1371
+ const { sendMessage: t } = b(), n = T(e);
1372
+ return n ? { lightingState: n, selectScene: (r) => {
1373
+ t(`/device/${e}/selectScene`, r);
1297
1374
  } } : void 0;
1298
1375
  }
1299
- function B6(t) {
1300
- const { sendMessage: e } = S(), o = _(t);
1301
- return o ? { matrixRoutingState: o, setRoute: (c) => {
1302
- e(`/device/${t}/route`, c);
1376
+ function be(e) {
1377
+ const { sendMessage: t } = b(), n = T(e);
1378
+ return n ? { matrixRoutingState: n, setRoute: (r) => {
1379
+ t(`/device/${e}/route`, r);
1303
1380
  } } : void 0;
1304
1381
  }
1305
- function O6(t) {
1306
- const { sendMessage: e } = S();
1382
+ function Ie(e) {
1383
+ const { sendMessage: t } = b();
1307
1384
  return { closeApp: () => {
1308
- e(`/device/${t}/closeWebViewController`, null);
1385
+ t(`/device/${e}/closeWebViewController`, null);
1309
1386
  } };
1310
1387
  }
1311
- function V6(t) {
1312
- const e = `/device/${t}`, o = g(e, "num0"), r = g(e, "num1"), c = g(e, "num2"), i = g(e, "num3"), d = g(e, "num4"), u = g(e, "num5"), f = g(e, "num6"), w = g(e, "num7"), h = g(e, "num8"), I = g(e, "num9"), $ = g(e, "numDash"), U = g(e, "numEnter");
1313
- return { digit0: o, digit1: r, digit2: c, digit3: i, digit4: d, digit5: u, digit6: f, digit7: w, digit8: h, digit9: I, keypadAccessoryButton1: $, keypadAccessoryButton2: U };
1388
+ function Re(e) {
1389
+ const t = `/device/${e}`, n = g(t, "num0"), c = g(t, "num1"), r = g(t, "num2"), i = g(t, "num3"), d = g(t, "num4"), a = g(t, "num5"), f = g(t, "num6"), w = g(t, "num7"), h = g(t, "num8"), R = g(t, "num9"), A = g(t, "numDash"), F = g(t, "numEnter");
1390
+ return { digit0: n, digit1: c, digit2: r, digit3: i, digit4: d, digit5: a, digit6: f, digit7: w, digit8: h, digit9: R, keypadAccessoryButton1: A, keypadAccessoryButton2: F };
1314
1391
  }
1315
- function k6(t) {
1316
- const { sendMessage: e } = S(), o = _(t);
1317
- return o ? { projectorScreenLiftControlState: o, raise: () => {
1318
- e(`/device/${t}/raise`, null);
1392
+ function ye(e) {
1393
+ const { sendMessage: t } = b(), n = T(e);
1394
+ return n ? { projectorScreenLiftControlState: n, raise: () => {
1395
+ t(`/device/${e}/raise`, null);
1319
1396
  }, lower: () => {
1320
- e(`/device/${t}/lower`, null);
1397
+ t(`/device/${e}/lower`, null);
1321
1398
  } } : void 0;
1322
1399
  }
1323
- function U6(t) {
1324
- const { sendMessage: e } = S(), o = D1(t);
1325
- return o ? { roomEventScheduleState: o, save: (c) => {
1326
- e(`/room/${t}/saveScheduledEvents`, c);
1400
+ function Ee(e) {
1401
+ const { sendMessage: t } = b(), n = j1(e);
1402
+ return n ? { roomEventScheduleState: n, save: (r) => {
1403
+ t(`/room/${e}/saveScheduledEvents`, r);
1327
1404
  } } : void 0;
1328
1405
  }
1329
- function F6(t) {
1330
- const { sendMessage: e } = S();
1406
+ function _e(e) {
1407
+ const { sendMessage: t } = b();
1331
1408
  return { runDefaultPresentRoute: () => {
1332
- e(`/room/${t}/defaultsource`, {});
1409
+ t(`/room/${e}/defaultsource`, {});
1333
1410
  } };
1334
1411
  }
1335
- function W6(t) {
1336
- const { sendMessage: e } = S();
1337
- return { runDirectRoute: (r) => {
1338
- e(`/room/${t}/directRoute`, r);
1412
+ function Te(e) {
1413
+ const { sendMessage: t } = b();
1414
+ return { runDirectRoute: (c) => {
1415
+ t(`/room/${e}/directRoute`, c);
1339
1416
  } };
1340
1417
  }
1341
- function H6(t) {
1342
- const { sendMessage: e } = S();
1343
- return { routingState: _(t), runRoute: (c) => {
1344
- e(`/room/${t}/source`, c);
1418
+ function Le(e) {
1419
+ const { sendMessage: t } = b();
1420
+ return { routingState: T(e), runRoute: (r) => {
1421
+ t(`/room/${e}/source`, r);
1345
1422
  } };
1346
1423
  }
1347
- function K6(t) {
1348
- const e = `/device/${t}`, o = g(e, "chanUp"), r = g(e, "chanDown");
1349
- return { dvrList: o, replay: r };
1424
+ function Pe(e) {
1425
+ const t = `/device/${e}`, n = g(t, "chanUp"), c = g(t, "chanDown");
1426
+ return { dvrList: n, replay: c };
1350
1427
  }
1351
- function G6(t) {
1352
- const { sendMessage: e } = S(), o = _(t);
1353
- return o ? { shadeState: o, shadeUp: () => {
1354
- e(`/device/${t}/shadeUp`, null);
1428
+ function De(e) {
1429
+ const { sendMessage: t } = b(), n = T(e);
1430
+ return n ? { shadeState: n, shadeUp: () => {
1431
+ t(`/device/${e}/shadeUp`, null);
1355
1432
  }, shadeDown: () => {
1356
- e(`/device/${t}/shadeDown`, null);
1433
+ t(`/device/${e}/shadeDown`, null);
1357
1434
  }, stopOrPreset: () => {
1358
- e(`/device/${t}/stopOrPreset`, null);
1435
+ t(`/device/${e}/stopOrPreset`, null);
1359
1436
  } } : void 0;
1360
1437
  }
1361
- function q6(t) {
1362
- const { sendMessage: e } = S(), o = D1(t);
1363
- return o ? { shutdownPromptTimerState: o, setShutdownPromptSeconds: (u) => {
1364
- e(`/room/${t}/setShutdownPromptSeconds`, u);
1438
+ function $e(e) {
1439
+ const { sendMessage: t } = b(), n = j1(e);
1440
+ return n ? { shutdownPromptTimerState: n, setShutdownPromptSeconds: (a) => {
1441
+ t(`/room/${e}/setShutdownPromptSeconds`, a);
1365
1442
  }, shutdownStart: () => {
1366
- e(`/room/${t}/shutdownStart`, null);
1443
+ t(`/room/${e}/shutdownStart`, null);
1367
1444
  }, shutdownEnd: () => {
1368
- e(`/room/${t}/shutdownEnd`, null);
1445
+ t(`/room/${e}/shutdownEnd`, null);
1369
1446
  }, shutdownCancel: () => {
1370
- e(`/room/${t}/shutdownCancel`, null);
1447
+ t(`/room/${e}/shutdownCancel`, null);
1371
1448
  } } : void 0;
1372
1449
  }
1373
- function Y6(t) {
1374
- const { sendMessage: e } = S(), o = _(t);
1375
- return o ? { switchedOutputState: o, on: () => {
1376
- e(`/device/${t}/on`, null);
1450
+ function Ae(e) {
1451
+ const { sendMessage: t } = b(), n = T(e);
1452
+ return n ? { switchedOutputState: n, on: () => {
1453
+ t(`/device/${e}/on`, null);
1377
1454
  }, off: () => {
1378
- e(`/device/${t}/off`, null);
1455
+ t(`/device/${e}/off`, null);
1379
1456
  } } : void 0;
1380
1457
  }
1381
- function z6(t) {
1382
- const { sendMessage: e } = S(), o = D1(t);
1383
- return o ? { techPasswordState: o, validatePassword: (i) => {
1384
- e(`/room/${t}/validateTechPassword`, { password: i });
1458
+ function Be(e) {
1459
+ const { sendMessage: t } = b(), n = j1(e);
1460
+ return n ? { techPasswordState: n, validatePassword: (i) => {
1461
+ t(`/room/${e}/validateTechPassword`, { password: i });
1385
1462
  }, setPassword: (i, d) => {
1386
- e(`/room/${t}/setTechPassword`, { oldPassword: i, newPassword: d });
1463
+ t(`/room/${e}/setTechPassword`, { oldPassword: i, newPassword: d });
1387
1464
  } } : void 0;
1388
1465
  }
1389
- function J6(t) {
1390
- const { sendMessage: e } = S(), o = _(t);
1391
- return o ? { state: o, setTemperatureUnitsToCelcius: () => e(`${t}/setTemperatureUnitsToCelcius`, null), setTemperatureUnitsToFahrenheit: () => e(`${t}/setTemperatureUnitsToFahrenheit`, null) } : void 0;
1466
+ function Oe(e) {
1467
+ const { sendMessage: t } = b(), n = T(e);
1468
+ return n ? { state: n, setTemperatureUnitsToCelcius: () => t(`${e}/setTemperatureUnitsToCelcius`, null), setTemperatureUnitsToFahrenheit: () => t(`${e}/setTemperatureUnitsToFahrenheit`, null) } : void 0;
1392
1469
  }
1393
- function X6(t) {
1394
- const { sendMessage: e } = S(), o = _(t), r = (c) => {
1395
- e(`/device/${t}/saveTheme`, { value: c });
1470
+ function Ve(e) {
1471
+ const { sendMessage: t } = b(), n = T(e), c = (r) => {
1472
+ t(`/device/${e}/saveTheme`, { value: r });
1396
1473
  };
1397
1474
  return {
1398
- currentTheme: o == null ? void 0 : o.theme,
1399
- saveTheme: r
1475
+ currentTheme: n == null ? void 0 : n.theme,
1476
+ saveTheme: c
1400
1477
  };
1401
1478
  }
1402
- function Q6(t) {
1403
- const e = `/device/${t}`, o = g(e, "play"), r = g(e, "pause"), c = g(e, "stop"), i = g(e, "prevTrack"), d = g(e, "nextTrack"), u = g(e, "rewind"), f = g(e, "ffwd"), w = g(e, "record");
1404
- return { play: o, pause: r, stop: c, prevTrack: i, nextTrack: d, rewind: u, fastForward: f, record: w };
1479
+ function ke(e) {
1480
+ const t = `/device/${e}`, n = g(t, "play"), c = g(t, "pause"), r = g(t, "stop"), i = g(t, "prevTrack"), d = g(t, "nextTrack"), a = g(t, "rewind"), f = g(t, "ffwd"), w = g(t, "record");
1481
+ return { play: n, pause: c, stop: r, prevTrack: i, nextTrack: d, rewind: a, fastForward: f, record: w };
1405
1482
  }
1406
- function N6(t) {
1407
- const e = _(t), { sendMessage: o } = S();
1408
- return e ? {
1409
- touchpanelState: e,
1483
+ function Ue(e) {
1484
+ const t = T(e), { sendMessage: n } = b();
1485
+ return t ? {
1486
+ touchpanelState: t,
1410
1487
  appControl: { hideApp: () => {
1411
- o(`/device/${t}/hideApp`, null);
1488
+ n(`/device/${e}/hideApp`, null);
1412
1489
  }, openApp: () => {
1413
- o(`/device/${t}/openApp`, null);
1490
+ n(`/device/${e}/openApp`, null);
1414
1491
  }, closeApp: () => {
1415
- o(`/device/${t}/closeApp`, null);
1492
+ n(`/device/${e}/closeApp`, null);
1416
1493
  } },
1417
1494
  zoomControl: { endCall: () => {
1418
- o(`/device/${t}/endCall`, null);
1495
+ n(`/device/${e}/endCall`, null);
1419
1496
  } }
1420
1497
  } : void 0;
1421
1498
  }
1422
- function ee(t) {
1423
- const e = _(t), o = M3(t), r = $1(t);
1424
- if (!e) return;
1425
- const c = (e.powerState || e.isWarming) && !e.isCooling, i = (!e.powerState || e.isCooling) && !e.isWarming;
1499
+ function Fe(e) {
1500
+ const t = T(e), n = S3(e), c = V1(e);
1501
+ if (!t) return;
1502
+ const r = (t.powerState || t.isWarming) && !t.isCooling, i = (!t.powerState || t.isCooling) && !t.isWarming;
1426
1503
  return {
1427
- displayState: e,
1428
- powerControl: o,
1429
- inputControl: r,
1430
- powerFb: { powerOnFb: c, powerOffFb: i }
1504
+ displayState: t,
1505
+ powerControl: n,
1506
+ inputControl: c,
1507
+ powerFb: { powerOnFb: r, powerOffFb: i }
1431
1508
  };
1432
1509
  }
1433
- const te = ({ config: t }) => {
1434
- const { sendMessage: e } = S();
1435
- t1(() => {
1436
- var r, c, i, d;
1437
- if (!t)
1510
+ const We = ({ config: e }) => {
1511
+ const { sendMessage: t } = b();
1512
+ o1(() => {
1513
+ var c, r, i, d;
1514
+ if (!e)
1438
1515
  return;
1439
- const o = [];
1440
- if (t.destinations && Object.values(t.destinations).forEach((u) => {
1441
- o.push(u);
1442
- }), t.destinationList && Object.values(t.destinationList).forEach((u) => {
1443
- o.push(u.sinkKey);
1444
- }), t.audioControlPointList && Object.values((r = t.audioControlPointList) == null ? void 0 : r.levelControls).forEach((u) => {
1445
- u.itemKey ? o.push(u.parentDeviceKey + "--" + u.itemKey) : o.push(u.parentDeviceKey);
1446
- }), (c = t.touchpanelKeys) == null || c.forEach((u) => {
1447
- o.push(u);
1448
- }), (i = t.environmentalDevices) == null || i.forEach((u) => {
1449
- o.push(u.deviceKey);
1450
- }), (d = t.accessoryDeviceKeys) == null || d.forEach((u) => {
1451
- o.push(u);
1452
- }), t.audioCodecKey && o.push(t.audioCodecKey), t.videoCodecKey && o.push(t.videoCodecKey), t.matrixRoutingKey && o.push(t.matrixRoutingKey), t.roomCombinerKey && o.push(t.roomCombinerKey), t.endpointKeys && t.endpointKeys.forEach((u) => {
1453
- o.push(u);
1454
- }), t.sourceList)
1455
- for (const u of Object.values(t.sourceList))
1456
- u.sourceKey && u.sourceKey !== "$off" && o.push(u.sourceKey);
1457
- console.log("deviceKeys", o), o.forEach((u) => {
1458
- e(`/device/${u}/fullStatus`, { deviceKey: u });
1516
+ const n = [];
1517
+ if (e.destinations && Object.values(e.destinations).forEach((a) => {
1518
+ n.push(a);
1519
+ }), e.destinationList && Object.values(e.destinationList).forEach((a) => {
1520
+ n.push(a.sinkKey);
1521
+ }), e.audioControlPointList && Object.values((c = e.audioControlPointList) == null ? void 0 : c.levelControls).forEach((a) => {
1522
+ a.itemKey ? n.push(a.parentDeviceKey + "--" + a.itemKey) : n.push(a.parentDeviceKey);
1523
+ }), (r = e.touchpanelKeys) == null || r.forEach((a) => {
1524
+ n.push(a);
1525
+ }), (i = e.environmentalDevices) == null || i.forEach((a) => {
1526
+ n.push(a.deviceKey);
1527
+ }), (d = e.accessoryDeviceKeys) == null || d.forEach((a) => {
1528
+ n.push(a);
1529
+ }), e.audioCodecKey && n.push(e.audioCodecKey), e.videoCodecKey && n.push(e.videoCodecKey), e.matrixRoutingKey && n.push(e.matrixRoutingKey), e.roomCombinerKey && n.push(e.roomCombinerKey), e.endpointKeys && e.endpointKeys.forEach((a) => {
1530
+ n.push(a);
1531
+ }), e.sourceList)
1532
+ for (const a of Object.values(e.sourceList))
1533
+ a.sourceKey && a.sourceKey !== "$off" && n.push(a.sourceKey);
1534
+ console.log("deviceKeys", n), n.forEach((a) => {
1535
+ t(`/device/${a}/fullStatus`, { deviceKey: a });
1459
1536
  });
1460
- }, [t, e]);
1537
+ }, [e, t]);
1461
1538
  };
1462
- function se(t, e) {
1463
- const [o, r] = W(!1), [c, i] = W(!1);
1464
- return d3(() => {
1465
- const { current: d } = t, u = () => {
1539
+ function He(e, t) {
1540
+ const [n, c] = H(!1), [r, i] = H(!1);
1541
+ return w3(() => {
1542
+ const { current: d } = e, a = () => {
1466
1543
  const f = d && d.scrollHeight > d.clientHeight, w = d && d.scrollWidth > d.clientWidth;
1467
- i(f ?? !1), r(w ?? !1), e && e(f ?? !1, w ?? !1);
1544
+ i(f ?? !1), c(w ?? !1), t && t(f ?? !1, w ?? !1);
1468
1545
  };
1469
- d && u();
1470
- }, [t, e]), { overflowHorizontal: o, overflowVertical: c };
1546
+ d && a();
1547
+ }, [e, t]), { overflowHorizontal: n, overflowVertical: r };
1471
1548
  }
1472
- function oe(t, e) {
1473
- const o = Z2(t, e), r = `/room/${t}/volumes/${e}`;
1474
- return x3(r, o);
1549
+ function Ke(e, t) {
1550
+ const n = X2(e, t), c = `/room/${e}/volumes/${t}`;
1551
+ return C3(c, n);
1475
1552
  }
1476
- function ne(t) {
1477
- var u, f;
1478
- const [e, o] = W(((u = t == null ? void 0 : t.current) == null ? void 0 : u.scrollLeft) ?? 0), [r, c] = W(((f = t == null ? void 0 : t.current) == null ? void 0 : f.scrollTop) ?? 0), i = (w) => {
1479
- const { current: h } = t;
1553
+ function Ge(e) {
1554
+ var a, f;
1555
+ const [t, n] = H(((a = e == null ? void 0 : e.current) == null ? void 0 : a.scrollLeft) ?? 0), [c, r] = H(((f = e == null ? void 0 : e.current) == null ? void 0 : f.scrollTop) ?? 0), i = (w) => {
1556
+ const { current: h } = e;
1480
1557
  h && (console.log(h.scrollLeft), h.scrollLeft += w, console.log(h.scrollLeft));
1481
1558
  }, d = (w) => {
1482
- const { current: h } = t;
1559
+ const { current: h } = e;
1483
1560
  h && (console.log(h.scrollTop), h.scrollTop += w, console.log(h.scrollTop));
1484
1561
  };
1485
- return d3(() => {
1486
- const { current: w } = t, h = () => {
1487
- o((w == null ? void 0 : w.scrollLeft) ?? 0), c((w == null ? void 0 : w.scrollTop) ?? 0);
1562
+ return w3(() => {
1563
+ const { current: w } = e, h = () => {
1564
+ n((w == null ? void 0 : w.scrollLeft) ?? 0), r((w == null ? void 0 : w.scrollTop) ?? 0);
1488
1565
  };
1489
1566
  w && h();
1490
- }, [t]), { horizontalScrollPosition: e, verticalScrollPosition: r, scrollHorizontal: i, scrollVertical: d };
1567
+ }, [e]), { horizontalScrollPosition: t, verticalScrollPosition: c, scrollHorizontal: i, scrollVertical: d };
1491
1568
  }
1492
- function re() {
1493
- const { sendMessage: t } = S();
1569
+ function qe() {
1570
+ const { sendMessage: e } = b();
1494
1571
  return {
1495
1572
  reboot: () => {
1496
- t("/system/reboot", null);
1573
+ e("/system/reboot", null);
1497
1574
  },
1498
1575
  programReset: () => {
1499
- t("/system/programReset", null);
1576
+ e("/system/programReset", null);
1500
1577
  }
1501
1578
  };
1502
1579
  }
1503
- function ce() {
1504
- const [t, e] = W(), [o, r] = W();
1505
- function c() {
1506
- e((/* @__PURE__ */ new Date()).toLocaleDateString("en-US", { dateStyle: "long" }));
1580
+ function Ye() {
1581
+ const [e, t] = H(), [n, c] = H();
1582
+ function r() {
1583
+ t((/* @__PURE__ */ new Date()).toLocaleDateString("en-US", { dateStyle: "long" }));
1507
1584
  const i = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
1508
- r(i);
1585
+ c(i);
1509
1586
  }
1510
- return t1(() => {
1511
- c();
1587
+ return o1(() => {
1588
+ r();
1512
1589
  const i = setInterval(() => {
1513
- c();
1590
+ r();
1514
1591
  }, 1e3);
1515
1592
  return () => clearInterval(i);
1516
- }, []), { date: t, time: o };
1593
+ }, []), { date: e, time: n };
1517
1594
  }
1518
- const le = () => {
1519
- const [t, e] = W(!1), o = r2(), r = c2();
1520
- let c;
1521
- return l2(r) ? c = r.statusText : r instanceof Error ? c = r.message : typeof r == "string" ? c = r : (console.error(r), c = "Unknown error"), /* @__PURE__ */ s.jsxs("div", { className: "d-flex flex-column align-items-center gap-5", children: [
1595
+ const ze = () => {
1596
+ const [e, t] = H(!1), n = a2(), c = u2();
1597
+ let r;
1598
+ return d2(c) ? r = c.statusText : c instanceof Error ? r = c.message : typeof c == "string" ? r = c : (console.error(c), r = "Unknown error"), /* @__PURE__ */ s.jsxs("div", { className: "d-flex flex-column align-items-center gap-5", children: [
1522
1599
  /* @__PURE__ */ s.jsx("div", { className: "m-2 p-2 bg-danger rounded d-flex align-items-center", children: /* @__PURE__ */ s.jsx("span", { className: "fs-5 text-white", children: "We are sorry. Something went wrong." }) }),
1523
- /* @__PURE__ */ s.jsx("button", { className: "btn btn-primary p-2", onClick: () => o(-1), children: "Go Back" }),
1524
- /* @__PURE__ */ s.jsx("button", { className: "btn btn-primary p-2", onClick: () => e(!t), children: t ? "Hide error message" : "Show error message" }),
1525
- t && /* @__PURE__ */ s.jsx("p", { children: c })
1600
+ /* @__PURE__ */ s.jsx("button", { className: "btn btn-primary p-2", onClick: () => n(-1), children: "Go Back" }),
1601
+ /* @__PURE__ */ s.jsx("button", { className: "btn btn-primary p-2", onClick: () => t(!e), children: e ? "Hide error message" : "Show error message" }),
1602
+ e && /* @__PURE__ */ s.jsx("p", { children: r })
1526
1603
  ] });
1527
- }, H2 = "_iconbtn_16qss_1", K2 = "_iconbtnvert_16qss_7", G2 = "_iconsm_16qss_18", _1 = {
1528
- iconbtn: H2,
1529
- iconbtnvert: K2,
1530
- iconsm: G2
1531
- }, q2 = ({
1532
- multiIcon: t,
1533
- otherContent: e = null,
1534
- vert: o = !1,
1535
- className: r,
1536
- iconClassName: c = "",
1604
+ }, _8 = "_iconbtn_16qss_1", T8 = "_iconbtnvert_16qss_7", L8 = "_iconsm_16qss_18", D1 = {
1605
+ iconbtn: _8,
1606
+ iconbtnvert: T8,
1607
+ iconsm: L8
1608
+ }, P8 = ({
1609
+ multiIcon: e,
1610
+ otherContent: t = null,
1611
+ vert: n = !1,
1612
+ className: c,
1613
+ iconClassName: r = "",
1537
1614
  otherContentClassName: i = "",
1538
1615
  disabled: d,
1539
- feedback: u,
1616
+ feedback: a,
1540
1617
  feedbackClassName: f,
1541
1618
  onPointerDown: w,
1542
1619
  onPointerUp: h,
1543
- onPointerLeave: I,
1544
- ...$
1620
+ onPointerLeave: R,
1621
+ ...A
1545
1622
  }) => {
1546
- const [U, O] = W(!1), z = !d && u ? f : "", s1 = !d && (U || u);
1623
+ const [F, k] = H(!1), Q = !d && a ? f : "", c1 = !d && (F || a);
1547
1624
  return /* @__PURE__ */ s.jsxs(
1548
1625
  "button",
1549
1626
  {
1550
1627
  type: "button",
1551
- className: `${_1.iconbtn} ${o ? _1.iconbtnvert : ""} ${r} ${z}`,
1552
- ...$,
1628
+ className: `${D1.iconbtn} ${n ? D1.iconbtnvert : ""} ${c} ${Q}`,
1629
+ ...A,
1553
1630
  disabled: d,
1554
- onPointerDown: (P) => {
1555
- O(!0), w == null || w(P);
1631
+ onPointerDown: (D) => {
1632
+ k(!0), w == null || w(D);
1556
1633
  },
1557
- onPointerUp: (P) => {
1558
- O(!1), h == null || h(P);
1634
+ onPointerUp: (D) => {
1635
+ k(!1), h == null || h(D);
1559
1636
  },
1560
- onPointerLeave: (P) => {
1561
- O(!1), I == null || I(P);
1637
+ onPointerLeave: (D) => {
1638
+ k(!1), R == null || R(D);
1562
1639
  },
1563
1640
  children: [
1564
- t && /* @__PURE__ */ s.jsx(
1565
- t,
1641
+ e && /* @__PURE__ */ s.jsx(
1642
+ e,
1566
1643
  {
1567
- className: `${c || _1.iconsm}`,
1568
- active: s1,
1644
+ className: `${r || D1.iconsm}`,
1645
+ active: c1,
1569
1646
  disabled: d
1570
1647
  }
1571
1648
  ),
1572
- i ? /* @__PURE__ */ s.jsx("div", { className: i, children: e }) : /* @__PURE__ */ s.jsx("div", { children: e })
1649
+ i ? /* @__PURE__ */ s.jsx("div", { className: i, children: t }) : /* @__PURE__ */ s.jsx("div", { children: t })
1573
1650
  ]
1574
1651
  }
1575
1652
  );
1576
- }, Z = ({
1577
- ActiveImage: t,
1578
- DisabledImage: e,
1579
- EnabledImage: o,
1580
- active: r,
1581
- disabled: c
1582
- }) => c ? e : r ? t : o, Y2 = ({
1583
- active: t,
1584
- className: e = "",
1585
- disabled: o
1653
+ }, j = ({
1654
+ ActiveImage: e,
1655
+ DisabledImage: t,
1656
+ EnabledImage: n,
1657
+ active: c,
1658
+ disabled: r
1659
+ }) => r ? t : c ? e : n, D8 = ({
1660
+ active: e,
1661
+ className: t = "",
1662
+ disabled: n
1586
1663
  }) => /* @__PURE__ */ s.jsx(
1587
- Z,
1664
+ j,
1588
1665
  {
1589
1666
  ActiveImage: /* @__PURE__ */ s.jsx(
1590
1667
  "svg",
1591
1668
  {
1592
- className: e,
1669
+ className: t,
1593
1670
  xmlns: "http://www.w3.org/2000/svg",
1594
1671
  viewBox: "0 0 164.61 164.61",
1595
1672
  fill: "currentcolor",
@@ -1605,7 +1682,7 @@ const le = () => {
1605
1682
  DisabledImage: /* @__PURE__ */ s.jsx(
1606
1683
  "svg",
1607
1684
  {
1608
- className: e,
1685
+ className: t,
1609
1686
  xmlns: "http://www.w3.org/2000/svg",
1610
1687
  viewBox: "0 0 164.61 164.61",
1611
1688
  fill: "currentColor",
@@ -1615,7 +1692,7 @@ const le = () => {
1615
1692
  EnabledImage: /* @__PURE__ */ s.jsx(
1616
1693
  "svg",
1617
1694
  {
1618
- className: e,
1695
+ className: t,
1619
1696
  fill: "currentcolor",
1620
1697
  xmlns: "http://www.w3.org/2000/svg",
1621
1698
  viewBox: "0 0 164.61 164.61",
@@ -1628,22 +1705,22 @@ const le = () => {
1628
1705
  ) })
1629
1706
  }
1630
1707
  ),
1631
- active: t,
1632
- disabled: o
1708
+ active: e,
1709
+ disabled: n
1633
1710
  }
1634
- ), z2 = ({
1635
- active: t,
1636
- className: e = "",
1637
- disabled: o
1711
+ ), $8 = ({
1712
+ active: e,
1713
+ className: t = "",
1714
+ disabled: n
1638
1715
  }) => /* @__PURE__ */ s.jsx(
1639
- Z,
1716
+ j,
1640
1717
  {
1641
1718
  ActiveImage: (
1642
1719
  /* icon-ban-active.svg */
1643
1720
  /* @__PURE__ */ s.jsx(
1644
1721
  "svg",
1645
1722
  {
1646
- className: e,
1723
+ className: t,
1647
1724
  fill: "currentcolor",
1648
1725
  xmlns: "http://www.w3.org/2000/svg",
1649
1726
  viewBox: "0 0 164.61 164.61",
@@ -1656,7 +1733,7 @@ const le = () => {
1656
1733
  /* @__PURE__ */ s.jsx(
1657
1734
  "svg",
1658
1735
  {
1659
- className: e,
1736
+ className: t,
1660
1737
  fill: "currentcolor",
1661
1738
  xmlns: "http://www.w3.org/2000/svg",
1662
1739
  viewBox: "0 0 164.61 164.61",
@@ -1669,7 +1746,7 @@ const le = () => {
1669
1746
  /* @__PURE__ */ s.jsx(
1670
1747
  "svg",
1671
1748
  {
1672
- className: e,
1749
+ className: t,
1673
1750
  fill: "currentcolor",
1674
1751
  xmlns: "http://www.w3.org/2000/svg",
1675
1752
  viewBox: "0 0 164.61 164.61",
@@ -1677,20 +1754,20 @@ const le = () => {
1677
1754
  }
1678
1755
  )
1679
1756
  ),
1680
- active: t,
1681
- disabled: o
1757
+ active: e,
1758
+ disabled: n
1682
1759
  }
1683
- ), J2 = ({
1684
- active: t,
1685
- className: e = "",
1686
- disabled: o
1760
+ ), A8 = ({
1761
+ active: e,
1762
+ className: t = "",
1763
+ disabled: n
1687
1764
  }) => /* @__PURE__ */ s.jsx(
1688
- Z,
1765
+ j,
1689
1766
  {
1690
1767
  ActiveImage: /* @__PURE__ */ s.jsx(
1691
1768
  "svg",
1692
1769
  {
1693
- className: e,
1770
+ className: t,
1694
1771
  fill: "currentcolor",
1695
1772
  xmlns: "http://www.w3.org/2000/svg",
1696
1773
  viewBox: "0 0 164.61 164.61",
@@ -1700,7 +1777,7 @@ const le = () => {
1700
1777
  DisabledImage: /* @__PURE__ */ s.jsx(
1701
1778
  "svg",
1702
1779
  {
1703
- className: e,
1780
+ className: t,
1704
1781
  fill: "currentcolor",
1705
1782
  xmlns: "http://www.w3.org/2000/svg",
1706
1783
  viewBox: "0 0 164.61 164.61",
@@ -1710,29 +1787,29 @@ const le = () => {
1710
1787
  EnabledImage: /* @__PURE__ */ s.jsx(
1711
1788
  "svg",
1712
1789
  {
1713
- className: e,
1790
+ className: t,
1714
1791
  fill: "currentcolor",
1715
1792
  xmlns: "http://www.w3.org/2000/svg",
1716
1793
  viewBox: "0 0 164.61 164.61",
1717
1794
  children: /* @__PURE__ */ s.jsx("g", { children: /* @__PURE__ */ s.jsx("path", { d: "M82.3,164.61C36.92,164.61,0,127.69,0,82.3S36.92,0,82.3,0s82.3,36.92,82.3,82.3-36.92,82.3-82.3,82.3ZM82.3,5C39.68,5,5,39.68,5,82.3s34.68,77.3,77.3,77.3,77.3-34.68,77.3-77.3S124.93,5,82.3,5ZM99.38,108.04h-59.68c-4.58,0-8.3-3.71-8.3-8.3v-43.17h59.43c4.72,0,8.55,3.83,8.55,8.55v42.92ZM133.2,106.05v-47.49c0-2.29-2.58-3.63-4.46-2.31l-22.73,16.02c-.75.53-1.2,1.39-1.2,2.31v15.45c0,.92.45,1.78,1.2,2.31l22.73,16.02c1.87,1.32,4.46-.02,4.46-2.31Z" }) })
1718
1795
  }
1719
1796
  ),
1720
- active: t,
1721
- disabled: o
1797
+ active: e,
1798
+ disabled: n
1722
1799
  }
1723
- ), X2 = ({
1724
- active: t,
1725
- className: e = "",
1726
- disabled: o
1800
+ ), B8 = ({
1801
+ active: e,
1802
+ className: t = "",
1803
+ disabled: n
1727
1804
  }) => /* @__PURE__ */ s.jsx(
1728
- Z,
1805
+ j,
1729
1806
  {
1730
1807
  ActiveImage: (
1731
1808
  /* icon-check-active.svg */
1732
1809
  /* @__PURE__ */ s.jsx(
1733
1810
  "svg",
1734
1811
  {
1735
- className: e,
1812
+ className: t,
1736
1813
  fill: "currentcolor",
1737
1814
  xmlns: "http://www.w3.org/2000/svg",
1738
1815
  viewBox: "0 0 164.61 164.61",
@@ -1745,7 +1822,7 @@ const le = () => {
1745
1822
  /* @__PURE__ */ s.jsx(
1746
1823
  "svg",
1747
1824
  {
1748
- className: e,
1825
+ className: t,
1749
1826
  fill: "currentcolor",
1750
1827
  xmlns: "http://www.w3.org/2000/svg",
1751
1828
  viewBox: "0 0 164.61 164.61",
@@ -1758,7 +1835,7 @@ const le = () => {
1758
1835
  /* @__PURE__ */ s.jsx(
1759
1836
  "svg",
1760
1837
  {
1761
- className: e,
1838
+ className: t,
1762
1839
  fill: "currentcolor",
1763
1840
  xmlns: "http://www.w3.org/2000/svg",
1764
1841
  viewBox: "0 0 164.61 164.61",
@@ -1766,24 +1843,24 @@ const le = () => {
1766
1843
  }
1767
1844
  )
1768
1845
  ),
1769
- active: t,
1770
- disabled: o
1846
+ active: e,
1847
+ disabled: n
1771
1848
  }
1772
- ), Q2 = ({
1773
- active: t,
1849
+ ), O8 = ({
1850
+ active: e,
1774
1851
  // Just to shut up the linter on this template. Prefer deleting this lint rule
1775
1852
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
1776
- className: e = "",
1777
- disabled: o
1853
+ className: t = "",
1854
+ disabled: n
1778
1855
  }) => /* @__PURE__ */ s.jsx(
1779
- Z,
1856
+ j,
1780
1857
  {
1781
1858
  ActiveImage: (
1782
1859
  /* icon-controller-active.svg */
1783
1860
  /* @__PURE__ */ s.jsx(
1784
1861
  "svg",
1785
1862
  {
1786
- className: e,
1863
+ className: t,
1787
1864
  fill: "currentcolor",
1788
1865
  xmlns: "http://www.w3.org/2000/svg",
1789
1866
  viewBox: "0 0 164.61 164.61",
@@ -1802,7 +1879,7 @@ const le = () => {
1802
1879
  /* @__PURE__ */ s.jsx(
1803
1880
  "svg",
1804
1881
  {
1805
- className: e,
1882
+ className: t,
1806
1883
  fill: "currentcolor",
1807
1884
  xmlns: "http://www.w3.org/2000/svg",
1808
1885
  viewBox: "0 0 164.61 164.61",
@@ -1821,7 +1898,7 @@ const le = () => {
1821
1898
  /* @__PURE__ */ s.jsx(
1822
1899
  "svg",
1823
1900
  {
1824
- className: e,
1901
+ className: t,
1825
1902
  fill: "currentcolor",
1826
1903
  xmlns: "http://www.w3.org/2000/svg",
1827
1904
  viewBox: "0 0 164.61 164.61",
@@ -1835,22 +1912,22 @@ const le = () => {
1835
1912
  }
1836
1913
  )
1837
1914
  ),
1838
- active: t,
1839
- disabled: o
1915
+ active: e,
1916
+ disabled: n
1840
1917
  }
1841
- ), N2 = ({
1842
- active: t,
1843
- className: e = "",
1844
- disabled: o
1918
+ ), V8 = ({
1919
+ active: e,
1920
+ className: t = "",
1921
+ disabled: n
1845
1922
  }) => /* @__PURE__ */ s.jsx(
1846
- Z,
1923
+ j,
1847
1924
  {
1848
1925
  ActiveImage: (
1849
1926
  /* icon-down-active.svg */
1850
1927
  /* @__PURE__ */ s.jsx(
1851
1928
  "svg",
1852
1929
  {
1853
- className: e,
1930
+ className: t,
1854
1931
  fill: "currentcolor",
1855
1932
  xmlns: "http://www.w3.org/2000/svg",
1856
1933
  viewBox: "0 0 164.61 164.61",
@@ -1863,7 +1940,7 @@ const le = () => {
1863
1940
  /* @__PURE__ */ s.jsx(
1864
1941
  "svg",
1865
1942
  {
1866
- className: e,
1943
+ className: t,
1867
1944
  fill: "currentcolor",
1868
1945
  xmlns: "http://www.w3.org/2000/svg",
1869
1946
  viewBox: "0 0 164.61 164.61",
@@ -1876,7 +1953,7 @@ const le = () => {
1876
1953
  /* @__PURE__ */ s.jsx(
1877
1954
  "svg",
1878
1955
  {
1879
- className: e,
1956
+ className: t,
1880
1957
  fill: "currentcolor",
1881
1958
  xmlns: "http://www.w3.org/2000/svg",
1882
1959
  viewBox: "0 0 164.61 164.61",
@@ -1884,22 +1961,22 @@ const le = () => {
1884
1961
  }
1885
1962
  )
1886
1963
  ),
1887
- active: t,
1888
- disabled: o
1964
+ active: e,
1965
+ disabled: n
1889
1966
  }
1890
- ), e8 = ({
1891
- active: t,
1892
- className: e = "",
1893
- disabled: o
1967
+ ), k8 = ({
1968
+ active: e,
1969
+ className: t = "",
1970
+ disabled: n
1894
1971
  }) => /* @__PURE__ */ s.jsx(
1895
- Z,
1972
+ j,
1896
1973
  {
1897
1974
  ActiveImage: (
1898
1975
  /* icon-elipses-active.svg */
1899
1976
  /* @__PURE__ */ s.jsx(
1900
1977
  "svg",
1901
1978
  {
1902
- className: e,
1979
+ className: t,
1903
1980
  fill: "currentcolor",
1904
1981
  xmlns: "http://www.w3.org/2000/svg",
1905
1982
  viewBox: "0 0 164.61 164.61",
@@ -1912,7 +1989,7 @@ const le = () => {
1912
1989
  /* @__PURE__ */ s.jsx(
1913
1990
  "svg",
1914
1991
  {
1915
- className: e,
1992
+ className: t,
1916
1993
  fill: "currentcolor",
1917
1994
  xmlns: "http://www.w3.org/2000/svg",
1918
1995
  viewBox: "0 0 164.61 164.61",
@@ -1925,7 +2002,7 @@ const le = () => {
1925
2002
  /* @__PURE__ */ s.jsx(
1926
2003
  "svg",
1927
2004
  {
1928
- className: e,
2005
+ className: t,
1929
2006
  fill: "currentcolor",
1930
2007
  xmlns: "http://www.w3.org/2000/svg",
1931
2008
  viewBox: "0 0 164.61 164.61",
@@ -1933,22 +2010,22 @@ const le = () => {
1933
2010
  }
1934
2011
  )
1935
2012
  ),
1936
- active: t,
1937
- disabled: o
2013
+ active: e,
2014
+ disabled: n
1938
2015
  }
1939
- ), t8 = ({
1940
- active: t,
1941
- className: e = "",
1942
- disabled: o
2016
+ ), U8 = ({
2017
+ active: e,
2018
+ className: t = "",
2019
+ disabled: n
1943
2020
  }) => /* @__PURE__ */ s.jsx(
1944
- Z,
2021
+ j,
1945
2022
  {
1946
2023
  ActiveImage: (
1947
2024
  /* icon-flag-active.svg */
1948
2025
  /* @__PURE__ */ s.jsx(
1949
2026
  "svg",
1950
2027
  {
1951
- className: e,
2028
+ className: t,
1952
2029
  fill: "currentcolor",
1953
2030
  xmlns: "http://www.w3.org/2000/svg",
1954
2031
  viewBox: "0 0 164.61 164.61",
@@ -1961,7 +2038,7 @@ const le = () => {
1961
2038
  /* @__PURE__ */ s.jsx(
1962
2039
  "svg",
1963
2040
  {
1964
- className: e,
2041
+ className: t,
1965
2042
  fill: "currentcolor",
1966
2043
  xmlns: "http://www.w3.org/2000/svg",
1967
2044
  viewBox: "0 0 164.61 164.61",
@@ -1974,7 +2051,7 @@ const le = () => {
1974
2051
  /* @__PURE__ */ s.jsx(
1975
2052
  "svg",
1976
2053
  {
1977
- className: e,
2054
+ className: t,
1978
2055
  fill: "currentcolor",
1979
2056
  xmlns: "http://www.w3.org/2000/svg",
1980
2057
  viewBox: "0 0 164.61 164.61",
@@ -1982,22 +2059,22 @@ const le = () => {
1982
2059
  }
1983
2060
  )
1984
2061
  ),
1985
- active: t,
1986
- disabled: o
2062
+ active: e,
2063
+ disabled: n
1987
2064
  }
1988
- ), s8 = ({
1989
- active: t,
1990
- className: e = "",
1991
- disabled: o
2065
+ ), F8 = ({
2066
+ active: e,
2067
+ className: t = "",
2068
+ disabled: n
1992
2069
  }) => /* @__PURE__ */ s.jsx(
1993
- Z,
2070
+ j,
1994
2071
  {
1995
2072
  ActiveImage: (
1996
2073
  /* /Users/hvolmer/Downloads/SVG/icon-gear-active.svg */
1997
2074
  /* @__PURE__ */ s.jsx(
1998
2075
  "svg",
1999
2076
  {
2000
- className: e,
2077
+ className: t,
2001
2078
  fill: "currentcolor",
2002
2079
  xmlns: "http://www.w3.org/2000/svg",
2003
2080
  viewBox: "0 0 164.61 164.61",
@@ -2010,7 +2087,7 @@ const le = () => {
2010
2087
  /* @__PURE__ */ s.jsx(
2011
2088
  "svg",
2012
2089
  {
2013
- className: e,
2090
+ className: t,
2014
2091
  fill: "currentcolor",
2015
2092
  xmlns: "http://www.w3.org/2000/svg",
2016
2093
  viewBox: "0 0 164.61 164.61",
@@ -2023,7 +2100,7 @@ const le = () => {
2023
2100
  /* @__PURE__ */ s.jsx(
2024
2101
  "svg",
2025
2102
  {
2026
- className: e,
2103
+ className: t,
2027
2104
  fill: "currentcolor",
2028
2105
  xmlns: "http://www.w3.org/2000/svg",
2029
2106
  viewBox: "0 0 164.61 164.61",
@@ -2031,22 +2108,22 @@ const le = () => {
2031
2108
  }
2032
2109
  )
2033
2110
  ),
2034
- active: t,
2035
- disabled: o
2111
+ active: e,
2112
+ disabled: n
2036
2113
  }
2037
- ), o8 = ({
2038
- active: t,
2039
- className: e = "",
2040
- disabled: o
2114
+ ), W8 = ({
2115
+ active: e,
2116
+ className: t = "",
2117
+ disabled: n
2041
2118
  }) => /* @__PURE__ */ s.jsx(
2042
- Z,
2119
+ j,
2043
2120
  {
2044
2121
  ActiveImage: (
2045
2122
  /* icon-glass-active.svg */
2046
2123
  /* @__PURE__ */ s.jsx(
2047
2124
  "svg",
2048
2125
  {
2049
- className: e,
2126
+ className: t,
2050
2127
  fill: "currentcolor",
2051
2128
  xmlns: "http://www.w3.org/2000/svg",
2052
2129
  viewBox: "0 0 164.61 164.61",
@@ -2059,7 +2136,7 @@ const le = () => {
2059
2136
  /* @__PURE__ */ s.jsx(
2060
2137
  "svg",
2061
2138
  {
2062
- className: e,
2139
+ className: t,
2063
2140
  fill: "currentcolor",
2064
2141
  xmlns: "http://www.w3.org/2000/svg",
2065
2142
  viewBox: "0 0 164.61 164.61",
@@ -2072,7 +2149,7 @@ const le = () => {
2072
2149
  /* @__PURE__ */ s.jsx(
2073
2150
  "svg",
2074
2151
  {
2075
- className: e,
2152
+ className: t,
2076
2153
  fill: "currentcolor",
2077
2154
  xmlns: "http://www.w3.org/2000/svg",
2078
2155
  viewBox: "0 0 164.61 164.61",
@@ -2080,24 +2157,24 @@ const le = () => {
2080
2157
  }
2081
2158
  )
2082
2159
  ),
2083
- active: t,
2084
- disabled: o
2160
+ active: e,
2161
+ disabled: n
2085
2162
  }
2086
- ), n8 = ({
2087
- active: t,
2163
+ ), H8 = ({
2164
+ active: e,
2088
2165
  // Just to shut up the linter on this template. Prefer deleting this lint rule
2089
2166
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
2090
- className: e = "",
2091
- disabled: o
2167
+ className: t = "",
2168
+ disabled: n
2092
2169
  }) => /* @__PURE__ */ s.jsx(
2093
- Z,
2170
+ j,
2094
2171
  {
2095
2172
  ActiveImage: (
2096
2173
  /* icon-hdmi-active.svg */
2097
2174
  /* @__PURE__ */ s.jsx(
2098
2175
  "svg",
2099
2176
  {
2100
- className: e,
2177
+ className: t,
2101
2178
  fill: "currentcolor",
2102
2179
  xmlns: "http://www.w3.org/2000/svg",
2103
2180
  viewBox: "0 0 164.61 164.61",
@@ -2116,7 +2193,7 @@ const le = () => {
2116
2193
  /* @__PURE__ */ s.jsx(
2117
2194
  "svg",
2118
2195
  {
2119
- className: e,
2196
+ className: t,
2120
2197
  fill: "currentcolor",
2121
2198
  xmlns: "http://www.w3.org/2000/svg",
2122
2199
  viewBox: "0 0 164.61 164.61",
@@ -2135,7 +2212,7 @@ const le = () => {
2135
2212
  /* @__PURE__ */ s.jsx(
2136
2213
  "svg",
2137
2214
  {
2138
- className: e,
2215
+ className: t,
2139
2216
  fill: "currentcolor",
2140
2217
  xmlns: "http://www.w3.org/2000/svg",
2141
2218
  viewBox: "0 0 164.61 164.61",
@@ -2149,22 +2226,22 @@ const le = () => {
2149
2226
  }
2150
2227
  )
2151
2228
  ),
2152
- active: t,
2153
- disabled: o
2229
+ active: e,
2230
+ disabled: n
2154
2231
  }
2155
- ), r8 = ({
2156
- active: t,
2157
- className: e = "",
2158
- disabled: o
2232
+ ), K8 = ({
2233
+ active: e,
2234
+ className: t = "",
2235
+ disabled: n
2159
2236
  }) => /* @__PURE__ */ s.jsx(
2160
- Z,
2237
+ j,
2161
2238
  {
2162
2239
  ActiveImage: (
2163
2240
  /* icon-laptop-active.svg */
2164
2241
  /* @__PURE__ */ s.jsx(
2165
2242
  "svg",
2166
2243
  {
2167
- className: e,
2244
+ className: t,
2168
2245
  fill: "currentcolor",
2169
2246
  xmlns: "http://www.w3.org/2000/svg",
2170
2247
  viewBox: "0 0 164.61 164.61",
@@ -2177,7 +2254,7 @@ const le = () => {
2177
2254
  /* @__PURE__ */ s.jsx(
2178
2255
  "svg",
2179
2256
  {
2180
- className: e,
2257
+ className: t,
2181
2258
  fill: "currentcolor",
2182
2259
  xmlns: "http://www.w3.org/2000/svg",
2183
2260
  viewBox: "0 0 164.61 164.61",
@@ -2190,7 +2267,7 @@ const le = () => {
2190
2267
  /* @__PURE__ */ s.jsx(
2191
2268
  "svg",
2192
2269
  {
2193
- className: e,
2270
+ className: t,
2194
2271
  fill: "currentcolor",
2195
2272
  xmlns: "http://www.w3.org/2000/svg",
2196
2273
  viewBox: "0 0 164.61 164.61",
@@ -2198,22 +2275,22 @@ const le = () => {
2198
2275
  }
2199
2276
  )
2200
2277
  ),
2201
- active: t,
2202
- disabled: o
2278
+ active: e,
2279
+ disabled: n
2203
2280
  }
2204
- ), c8 = ({
2205
- active: t,
2206
- className: e = "",
2207
- disabled: o
2281
+ ), G8 = ({
2282
+ active: e,
2283
+ className: t = "",
2284
+ disabled: n
2208
2285
  }) => /* @__PURE__ */ s.jsx(
2209
- Z,
2286
+ j,
2210
2287
  {
2211
2288
  ActiveImage: (
2212
2289
  /* icon-left-active.svg */
2213
2290
  /* @__PURE__ */ s.jsx(
2214
2291
  "svg",
2215
2292
  {
2216
- className: e,
2293
+ className: t,
2217
2294
  fill: "currentcolor",
2218
2295
  xmlns: "http://www.w3.org/2000/svg",
2219
2296
  viewBox: "0 0 164.61 164.61",
@@ -2226,7 +2303,7 @@ const le = () => {
2226
2303
  /* @__PURE__ */ s.jsx(
2227
2304
  "svg",
2228
2305
  {
2229
- className: e,
2306
+ className: t,
2230
2307
  fill: "currentcolor",
2231
2308
  xmlns: "http://www.w3.org/2000/svg",
2232
2309
  viewBox: "0 0 164.61 164.61",
@@ -2239,7 +2316,7 @@ const le = () => {
2239
2316
  /* @__PURE__ */ s.jsx(
2240
2317
  "svg",
2241
2318
  {
2242
- className: e,
2319
+ className: t,
2243
2320
  fill: "currentcolor",
2244
2321
  xmlns: "http://www.w3.org/2000/svg",
2245
2322
  viewBox: "0 0 164.61 164.61",
@@ -2247,22 +2324,22 @@ const le = () => {
2247
2324
  }
2248
2325
  )
2249
2326
  ),
2250
- active: t,
2251
- disabled: o
2327
+ active: e,
2328
+ disabled: n
2252
2329
  }
2253
- ), l8 = ({
2254
- active: t,
2255
- className: e = "",
2256
- disabled: o
2330
+ ), q8 = ({
2331
+ active: e,
2332
+ className: t = "",
2333
+ disabled: n
2257
2334
  }) => /* @__PURE__ */ s.jsx(
2258
- Z,
2335
+ j,
2259
2336
  {
2260
2337
  ActiveImage: (
2261
2338
  /* icon-light-active.svg */
2262
2339
  /* @__PURE__ */ s.jsx(
2263
2340
  "svg",
2264
2341
  {
2265
- className: e,
2342
+ className: t,
2266
2343
  fill: "currentcolor",
2267
2344
  xmlns: "http://www.w3.org/2000/svg",
2268
2345
  viewBox: "0 0 164.61 164.61",
@@ -2275,7 +2352,7 @@ const le = () => {
2275
2352
  /* @__PURE__ */ s.jsx(
2276
2353
  "svg",
2277
2354
  {
2278
- className: e,
2355
+ className: t,
2279
2356
  fill: "currentcolor",
2280
2357
  xmlns: "http://www.w3.org/2000/svg",
2281
2358
  viewBox: "0 0 164.61 164.61",
@@ -2288,7 +2365,7 @@ const le = () => {
2288
2365
  /* @__PURE__ */ s.jsx(
2289
2366
  "svg",
2290
2367
  {
2291
- className: e,
2368
+ className: t,
2292
2369
  fill: "currentcolor",
2293
2370
  xmlns: "http://www.w3.org/2000/svg",
2294
2371
  viewBox: "0 0 164.61 164.61",
@@ -2296,22 +2373,22 @@ const le = () => {
2296
2373
  }
2297
2374
  )
2298
2375
  ),
2299
- active: t,
2300
- disabled: o
2376
+ active: e,
2377
+ disabled: n
2301
2378
  }
2302
- ), i8 = ({
2303
- active: t,
2304
- className: e = "",
2305
- disabled: o
2379
+ ), Y8 = ({
2380
+ active: e,
2381
+ className: t = "",
2382
+ disabled: n
2306
2383
  }) => /* @__PURE__ */ s.jsx(
2307
- Z,
2384
+ j,
2308
2385
  {
2309
2386
  ActiveImage: (
2310
2387
  /* icon-moon-active.svg */
2311
2388
  /* @__PURE__ */ s.jsx(
2312
2389
  "svg",
2313
2390
  {
2314
- className: e,
2391
+ className: t,
2315
2392
  fill: "currentcolor",
2316
2393
  xmlns: "http://www.w3.org/2000/svg",
2317
2394
  viewBox: "0 0 164.61 164.61",
@@ -2324,7 +2401,7 @@ const le = () => {
2324
2401
  /* @__PURE__ */ s.jsx(
2325
2402
  "svg",
2326
2403
  {
2327
- className: e,
2404
+ className: t,
2328
2405
  fill: "currentcolor",
2329
2406
  xmlns: "http://www.w3.org/2000/svg",
2330
2407
  viewBox: "0 0 164.61 164.61",
@@ -2337,7 +2414,7 @@ const le = () => {
2337
2414
  /* @__PURE__ */ s.jsx(
2338
2415
  "svg",
2339
2416
  {
2340
- className: e,
2417
+ className: t,
2341
2418
  fill: "currentcolor",
2342
2419
  xmlns: "http://www.w3.org/2000/svg",
2343
2420
  viewBox: "0 0 164.61 164.61",
@@ -2345,44 +2422,44 @@ const le = () => {
2345
2422
  }
2346
2423
  )
2347
2424
  ),
2348
- active: t,
2349
- disabled: o
2425
+ active: e,
2426
+ disabled: n
2350
2427
  }
2351
- ), a8 = ({
2352
- active: t,
2353
- className: e = "",
2354
- disabled: o
2428
+ ), z8 = ({
2429
+ active: e,
2430
+ className: t = "",
2431
+ disabled: n
2355
2432
  }) => /* @__PURE__ */ s.jsx(
2356
- Z,
2433
+ j,
2357
2434
  {
2358
2435
  ActiveImage: (
2359
2436
  /* icon-playstation-active.svg */
2360
- /* @__PURE__ */ s.jsx("svg", { className: e, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ s.jsx("g", { children: /* @__PURE__ */ s.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM66.47,96.77l-16.88,6.04c-2.98,1.07-3.44,2.58-1.02,3.38,2.42.79,6.81.57,9.8-.5l8.1-2.94v8.51c-.51.09-1.09.18-1.61.27-8.1,1.32-16.72.77-25.22-2.03-7.92-2.23-9.24-6.88-5.63-9.56,3.34-2.47,9.01-4.33,9.01-4.33l23.45-8.34v9.51ZM86,60.41v60.65l-16.36-5.19V43.55c6.95,1.29,17.09,4.34,22.53,6.18,13.85,4.76,18.55,10.67,18.55,24.01s-8.02,17.93-18.22,13v-24.22c0-2.84-.52-5.46-3.19-6.2-2.04-.65-3.31,1.24-3.31,4.09ZM131.62,102.87c-1.96,2.47-6.77,4.24-6.77,4.24l-35.75,12.84v-9.47l26.31-9.37c2.99-1.07,3.44-2.58,1.02-3.38-2.42-.8-6.81-.57-9.8.51l-17.53,6.17v-9.83l1.01-.34s5.07-1.79,12.19-2.58c7.12-.78,15.85.11,22.69,2.7,7.72,2.44,8.59,6.03,6.63,8.51Z" }) }) })
2437
+ /* @__PURE__ */ s.jsx("svg", { className: t, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ s.jsx("g", { children: /* @__PURE__ */ s.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM66.47,96.77l-16.88,6.04c-2.98,1.07-3.44,2.58-1.02,3.38,2.42.79,6.81.57,9.8-.5l8.1-2.94v8.51c-.51.09-1.09.18-1.61.27-8.1,1.32-16.72.77-25.22-2.03-7.92-2.23-9.24-6.88-5.63-9.56,3.34-2.47,9.01-4.33,9.01-4.33l23.45-8.34v9.51ZM86,60.41v60.65l-16.36-5.19V43.55c6.95,1.29,17.09,4.34,22.53,6.18,13.85,4.76,18.55,10.67,18.55,24.01s-8.02,17.93-18.22,13v-24.22c0-2.84-.52-5.46-3.19-6.2-2.04-.65-3.31,1.24-3.31,4.09ZM131.62,102.87c-1.96,2.47-6.77,4.24-6.77,4.24l-35.75,12.84v-9.47l26.31-9.37c2.99-1.07,3.44-2.58,1.02-3.38-2.42-.8-6.81-.57-9.8.51l-17.53,6.17v-9.83l1.01-.34s5.07-1.79,12.19-2.58c7.12-.78,15.85.11,22.69,2.7,7.72,2.44,8.59,6.03,6.63,8.51Z" }) }) })
2361
2438
  ),
2362
2439
  DisabledImage: (
2363
2440
  /* icon-playstation-disabled.svg */
2364
- /* @__PURE__ */ s.jsx("svg", { className: e, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ s.jsx("g", { children: /* @__PURE__ */ s.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM82.3,5c19.83,0,37.93,7.51,51.63,19.83L24.82,133.93c-12.32-13.7-19.82-31.8-19.82-51.63C5,39.68,39.68,5,82.3,5ZM82.3,159.61c-19.83,0-37.93-7.51-51.63-19.83L139.78,30.68c12.32,13.7,19.83,31.8,19.83,51.63,0,42.63-34.68,77.3-77.3,77.3ZM95.24,87.85l15.45-15.45c.01.45.03.88.03,1.34,0,11.81-6.62,16.96-15.48,14.11ZM131.62,102.87c-1.96,2.47-6.77,4.24-6.77,4.24l-35.75,12.84v-9.47l26.31-9.37c2.99-1.07,3.44-2.58,1.02-3.38-2.42-.8-6.81-.57-9.8.51l-17.53,6.17v-9.83l1.01-.34s5.07-1.79,12.19-2.58c7.12-.78,15.85.11,22.69,2.7,7.72,2.44,8.59,6.03,6.63,8.51ZM86.01,60.12l-16.37,16.37v-32.93c6.95,1.29,17.09,4.34,22.53,6.18,1.09.37,2.1.76,3.07,1.15l-5.59,5.59c-.12-.04-.22-.1-.35-.14-1.97-.63-3.22,1.12-3.3,3.79ZM34,99.94c3.34-2.47,9.01-4.33,9.01-4.33l11.65-4.14-17.26,17.26c-5.9-2.41-6.64-6.39-3.4-8.79ZM69.64,113.45l16.36-16.36v23.97l-16.36-5.19v-2.42Z" }) }) })
2441
+ /* @__PURE__ */ s.jsx("svg", { className: t, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ s.jsx("g", { children: /* @__PURE__ */ s.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM82.3,5c19.83,0,37.93,7.51,51.63,19.83L24.82,133.93c-12.32-13.7-19.82-31.8-19.82-51.63C5,39.68,39.68,5,82.3,5ZM82.3,159.61c-19.83,0-37.93-7.51-51.63-19.83L139.78,30.68c12.32,13.7,19.83,31.8,19.83,51.63,0,42.63-34.68,77.3-77.3,77.3ZM95.24,87.85l15.45-15.45c.01.45.03.88.03,1.34,0,11.81-6.62,16.96-15.48,14.11ZM131.62,102.87c-1.96,2.47-6.77,4.24-6.77,4.24l-35.75,12.84v-9.47l26.31-9.37c2.99-1.07,3.44-2.58,1.02-3.38-2.42-.8-6.81-.57-9.8.51l-17.53,6.17v-9.83l1.01-.34s5.07-1.79,12.19-2.58c7.12-.78,15.85.11,22.69,2.7,7.72,2.44,8.59,6.03,6.63,8.51ZM86.01,60.12l-16.37,16.37v-32.93c6.95,1.29,17.09,4.34,22.53,6.18,1.09.37,2.1.76,3.07,1.15l-5.59,5.59c-.12-.04-.22-.1-.35-.14-1.97-.63-3.22,1.12-3.3,3.79ZM34,99.94c3.34-2.47,9.01-4.33,9.01-4.33l11.65-4.14-17.26,17.26c-5.9-2.41-6.64-6.39-3.4-8.79ZM69.64,113.45l16.36-16.36v23.97l-16.36-5.19v-2.42Z" }) }) })
2365
2442
  ),
2366
2443
  EnabledImage: (
2367
2444
  /* icon-playstation-enabled.svg */
2368
- /* @__PURE__ */ s.jsx("svg", { className: e, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ s.jsx("g", { children: /* @__PURE__ */ s.jsx("path", { d: "M131.62,102.87c-1.96,2.47-6.77,4.24-6.77,4.24l-35.75,12.84v-9.47l26.31-9.37c2.99-1.07,3.44-2.58,1.02-3.38-2.42-.8-6.81-.57-9.8.51l-17.53,6.17v-9.83l1.01-.34s5.07-1.79,12.19-2.58c7.12-.78,15.85.11,22.69,2.7,7.72,2.44,8.59,6.03,6.63,8.51ZM92.51,86.75v-24.22c0-2.84-.52-5.46-3.19-6.2-2.04-.65-3.31,1.24-3.31,4.09v60.65l-16.36-5.19V43.55c6.95,1.29,17.09,4.34,22.53,6.18,13.85,4.76,18.55,10.67,18.55,24.01s-8.02,17.93-18.22,13ZM39.63,109.49c-7.92-2.23-9.24-6.88-5.63-9.56,3.34-2.47,9.01-4.33,9.01-4.33l23.45-8.34v9.51l-16.88,6.04c-2.98,1.07-3.44,2.58-1.02,3.38,2.42.79,6.81.57,9.8-.5l8.1-2.94v8.51c-.51.09-1.09.18-1.61.27-8.1,1.32-16.72.77-25.22-2.03h0ZM82.3,164.61C36.92,164.61,0,127.69,0,82.3S36.92,0,82.3,0s82.3,36.92,82.3,82.3-36.92,82.3-82.3,82.3ZM82.3,5C39.68,5,5,39.68,5,82.3s34.68,77.3,77.3,77.3,77.3-34.68,77.3-77.3S124.93,5,82.3,5Z" }) }) })
2445
+ /* @__PURE__ */ s.jsx("svg", { className: t, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ s.jsx("g", { children: /* @__PURE__ */ s.jsx("path", { d: "M131.62,102.87c-1.96,2.47-6.77,4.24-6.77,4.24l-35.75,12.84v-9.47l26.31-9.37c2.99-1.07,3.44-2.58,1.02-3.38-2.42-.8-6.81-.57-9.8.51l-17.53,6.17v-9.83l1.01-.34s5.07-1.79,12.19-2.58c7.12-.78,15.85.11,22.69,2.7,7.72,2.44,8.59,6.03,6.63,8.51ZM92.51,86.75v-24.22c0-2.84-.52-5.46-3.19-6.2-2.04-.65-3.31,1.24-3.31,4.09v60.65l-16.36-5.19V43.55c6.95,1.29,17.09,4.34,22.53,6.18,13.85,4.76,18.55,10.67,18.55,24.01s-8.02,17.93-18.22,13ZM39.63,109.49c-7.92-2.23-9.24-6.88-5.63-9.56,3.34-2.47,9.01-4.33,9.01-4.33l23.45-8.34v9.51l-16.88,6.04c-2.98,1.07-3.44,2.58-1.02,3.38,2.42.79,6.81.57,9.8-.5l8.1-2.94v8.51c-.51.09-1.09.18-1.61.27-8.1,1.32-16.72.77-25.22-2.03h0ZM82.3,164.61C36.92,164.61,0,127.69,0,82.3S36.92,0,82.3,0s82.3,36.92,82.3,82.3-36.92,82.3-82.3,82.3ZM82.3,5C39.68,5,5,39.68,5,82.3s34.68,77.3,77.3,77.3,77.3-34.68,77.3-77.3S124.93,5,82.3,5Z" }) }) })
2369
2446
  ),
2370
- active: t,
2371
- disabled: o
2447
+ active: e,
2448
+ disabled: n
2372
2449
  }
2373
- ), u8 = ({
2374
- active: t,
2375
- className: e = "",
2376
- disabled: o
2450
+ ), J8 = ({
2451
+ active: e,
2452
+ className: t = "",
2453
+ disabled: n
2377
2454
  }) => /* @__PURE__ */ s.jsx(
2378
- Z,
2455
+ j,
2379
2456
  {
2380
2457
  ActiveImage: (
2381
2458
  /* icon-podium-active.svg */
2382
2459
  /* @__PURE__ */ s.jsx(
2383
2460
  "svg",
2384
2461
  {
2385
- className: e,
2462
+ className: t,
2386
2463
  fill: "currentcolor",
2387
2464
  xmlns: "http://www.w3.org/2000/svg",
2388
2465
  viewBox: "0 0 164.61 164.61",
@@ -2395,7 +2472,7 @@ const le = () => {
2395
2472
  /* @__PURE__ */ s.jsx(
2396
2473
  "svg",
2397
2474
  {
2398
- className: e,
2475
+ className: t,
2399
2476
  fill: "currentcolor",
2400
2477
  xmlns: "http://www.w3.org/2000/svg",
2401
2478
  viewBox: "0 0 164.61 164.61",
@@ -2408,7 +2485,7 @@ const le = () => {
2408
2485
  /* @__PURE__ */ s.jsx(
2409
2486
  "svg",
2410
2487
  {
2411
- className: e,
2488
+ className: t,
2412
2489
  fill: "currentcolor",
2413
2490
  xmlns: "http://www.w3.org/2000/svg",
2414
2491
  viewBox: "0 0 164.61 164.61",
@@ -2416,22 +2493,22 @@ const le = () => {
2416
2493
  }
2417
2494
  )
2418
2495
  ),
2419
- active: t,
2420
- disabled: o
2496
+ active: e,
2497
+ disabled: n
2421
2498
  }
2422
- ), d8 = ({
2423
- active: t,
2424
- className: e = "",
2425
- disabled: o
2499
+ ), X8 = ({
2500
+ active: e,
2501
+ className: t = "",
2502
+ disabled: n
2426
2503
  }) => /* @__PURE__ */ s.jsx(
2427
- Z,
2504
+ j,
2428
2505
  {
2429
2506
  ActiveImage: (
2430
2507
  /* icon-power-active.svg */
2431
2508
  /* @__PURE__ */ s.jsx(
2432
2509
  "svg",
2433
2510
  {
2434
- className: e,
2511
+ className: t,
2435
2512
  fill: "currentcolor",
2436
2513
  xmlns: "http://www.w3.org/2000/svg",
2437
2514
  viewBox: "0 0 164.61 164.61",
@@ -2444,7 +2521,7 @@ const le = () => {
2444
2521
  /* @__PURE__ */ s.jsx(
2445
2522
  "svg",
2446
2523
  {
2447
- className: e,
2524
+ className: t,
2448
2525
  fill: "currentcolor",
2449
2526
  xmlns: "http://www.w3.org/2000/svg",
2450
2527
  viewBox: "0 0 164.61 164.61",
@@ -2457,7 +2534,7 @@ const le = () => {
2457
2534
  /* @__PURE__ */ s.jsx(
2458
2535
  "svg",
2459
2536
  {
2460
- className: e,
2537
+ className: t,
2461
2538
  fill: "currentcolor",
2462
2539
  xmlns: "http://www.w3.org/2000/svg",
2463
2540
  viewBox: "0 0 164.61 164.61",
@@ -2465,22 +2542,22 @@ const le = () => {
2465
2542
  }
2466
2543
  )
2467
2544
  ),
2468
- active: t,
2469
- disabled: o
2545
+ active: e,
2546
+ disabled: n
2470
2547
  }
2471
- ), h8 = ({
2472
- active: t,
2473
- className: e = "",
2474
- disabled: o
2548
+ ), Q8 = ({
2549
+ active: e,
2550
+ className: t = "",
2551
+ disabled: n
2475
2552
  }) => /* @__PURE__ */ s.jsx(
2476
- Z,
2553
+ j,
2477
2554
  {
2478
2555
  ActiveImage: (
2479
2556
  /* icon-privacy-active.svg */
2480
2557
  /* @__PURE__ */ s.jsx(
2481
2558
  "svg",
2482
2559
  {
2483
- className: e,
2560
+ className: t,
2484
2561
  fill: "currentcolor",
2485
2562
  xmlns: "http://www.w3.org/2000/svg",
2486
2563
  viewBox: "0 0 164.61 164.61",
@@ -2493,7 +2570,7 @@ const le = () => {
2493
2570
  /* @__PURE__ */ s.jsx(
2494
2571
  "svg",
2495
2572
  {
2496
- className: e,
2573
+ className: t,
2497
2574
  fill: "currentcolor",
2498
2575
  xmlns: "http://www.w3.org/2000/svg",
2499
2576
  viewBox: "0 0 164.61 164.61",
@@ -2506,7 +2583,7 @@ const le = () => {
2506
2583
  /* @__PURE__ */ s.jsx(
2507
2584
  "svg",
2508
2585
  {
2509
- className: e,
2586
+ className: t,
2510
2587
  fill: "currentcolor",
2511
2588
  xmlns: "http://www.w3.org/2000/svg",
2512
2589
  viewBox: "0 0 164.61 164.61",
@@ -2514,22 +2591,22 @@ const le = () => {
2514
2591
  }
2515
2592
  )
2516
2593
  ),
2517
- active: t,
2518
- disabled: o
2594
+ active: e,
2595
+ disabled: n
2519
2596
  }
2520
- ), v8 = ({
2521
- active: t,
2522
- className: e = "",
2523
- disabled: o
2597
+ ), N8 = ({
2598
+ active: e,
2599
+ className: t = "",
2600
+ disabled: n
2524
2601
  }) => /* @__PURE__ */ s.jsx(
2525
- Z,
2602
+ j,
2526
2603
  {
2527
2604
  ActiveImage: (
2528
2605
  /* icon-question-active.svg */
2529
2606
  /* @__PURE__ */ s.jsx(
2530
2607
  "svg",
2531
2608
  {
2532
- className: e,
2609
+ className: t,
2533
2610
  fill: "currentcolor",
2534
2611
  xmlns: "http://www.w3.org/2000/svg",
2535
2612
  viewBox: "0 0 164.61 164.61",
@@ -2542,7 +2619,7 @@ const le = () => {
2542
2619
  /* @__PURE__ */ s.jsx(
2543
2620
  "svg",
2544
2621
  {
2545
- className: e,
2622
+ className: t,
2546
2623
  fill: "currentcolor",
2547
2624
  xmlns: "http://www.w3.org/2000/svg",
2548
2625
  viewBox: "0 0 164.61 164.61",
@@ -2555,7 +2632,7 @@ const le = () => {
2555
2632
  /* @__PURE__ */ s.jsx(
2556
2633
  "svg",
2557
2634
  {
2558
- className: e,
2635
+ className: t,
2559
2636
  fill: "currentcolor",
2560
2637
  xmlns: "http://www.w3.org/2000/svg",
2561
2638
  viewBox: "0 0 164.61 164.61",
@@ -2563,22 +2640,22 @@ const le = () => {
2563
2640
  }
2564
2641
  )
2565
2642
  ),
2566
- active: t,
2567
- disabled: o
2643
+ active: e,
2644
+ disabled: n
2568
2645
  }
2569
- ), g8 = ({
2570
- active: t,
2571
- className: e = "",
2572
- disabled: o
2646
+ ), e6 = ({
2647
+ active: e,
2648
+ className: t = "",
2649
+ disabled: n
2573
2650
  }) => /* @__PURE__ */ s.jsx(
2574
- Z,
2651
+ j,
2575
2652
  {
2576
2653
  ActiveImage: (
2577
2654
  /* icon-right-active.svg */
2578
2655
  /* @__PURE__ */ s.jsx(
2579
2656
  "svg",
2580
2657
  {
2581
- className: e,
2658
+ className: t,
2582
2659
  fill: "currentcolor",
2583
2660
  xmlns: "http://www.w3.org/2000/svg",
2584
2661
  viewBox: "0 0 164.61 164.61",
@@ -2591,7 +2668,7 @@ const le = () => {
2591
2668
  /* @__PURE__ */ s.jsx(
2592
2669
  "svg",
2593
2670
  {
2594
- className: e,
2671
+ className: t,
2595
2672
  fill: "currentcolor",
2596
2673
  xmlns: "http://www.w3.org/2000/svg",
2597
2674
  viewBox: "0 0 164.61 164.61",
@@ -2604,7 +2681,7 @@ const le = () => {
2604
2681
  /* @__PURE__ */ s.jsx(
2605
2682
  "svg",
2606
2683
  {
2607
- className: e,
2684
+ className: t,
2608
2685
  fill: "currentcolor",
2609
2686
  xmlns: "http://www.w3.org/2000/svg",
2610
2687
  viewBox: "0 0 164.61 164.61",
@@ -2612,24 +2689,24 @@ const le = () => {
2612
2689
  }
2613
2690
  )
2614
2691
  ),
2615
- active: t,
2616
- disabled: o
2692
+ active: e,
2693
+ disabled: n
2617
2694
  }
2618
- ), f8 = ({
2619
- active: t,
2695
+ ), t6 = ({
2696
+ active: e,
2620
2697
  // Just to shut up the linter on this template. Prefer deleting this lint rule
2621
2698
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
2622
- className: e = "",
2623
- disabled: o
2699
+ className: t = "",
2700
+ disabled: n
2624
2701
  }) => /* @__PURE__ */ s.jsx(
2625
- Z,
2702
+ j,
2626
2703
  {
2627
2704
  ActiveImage: (
2628
2705
  /* icon-roomPC-active.svg */
2629
2706
  /* @__PURE__ */ s.jsx(
2630
2707
  "svg",
2631
2708
  {
2632
- className: e,
2709
+ className: t,
2633
2710
  fill: "currentcolor",
2634
2711
  xmlns: "http://www.w3.org/2000/svg",
2635
2712
  viewBox: "0 0 164.61 164.61",
@@ -2648,7 +2725,7 @@ const le = () => {
2648
2725
  /* @__PURE__ */ s.jsx(
2649
2726
  "svg",
2650
2727
  {
2651
- className: e,
2728
+ className: t,
2652
2729
  fill: "currentcolor",
2653
2730
  xmlns: "http://www.w3.org/2000/svg",
2654
2731
  viewBox: "0 0 164.61 164.61",
@@ -2667,7 +2744,7 @@ const le = () => {
2667
2744
  /* @__PURE__ */ s.jsx(
2668
2745
  "svg",
2669
2746
  {
2670
- className: e,
2747
+ className: t,
2671
2748
  fill: "currentcolor",
2672
2749
  xmlns: "http://www.w3.org/2000/svg",
2673
2750
  viewBox: "0 0 164.61 164.61",
@@ -2681,22 +2758,22 @@ const le = () => {
2681
2758
  }
2682
2759
  )
2683
2760
  ),
2684
- active: t,
2685
- disabled: o
2761
+ active: e,
2762
+ disabled: n
2686
2763
  }
2687
- ), p8 = ({
2688
- active: t,
2689
- className: e = "",
2690
- disabled: o
2764
+ ), s6 = ({
2765
+ active: e,
2766
+ className: t = "",
2767
+ disabled: n
2691
2768
  }) => /* @__PURE__ */ s.jsx(
2692
- Z,
2769
+ j,
2693
2770
  {
2694
2771
  ActiveImage: (
2695
2772
  /* icon-shade-active.svg */
2696
2773
  /* @__PURE__ */ s.jsx(
2697
2774
  "svg",
2698
2775
  {
2699
- className: e,
2776
+ className: t,
2700
2777
  fill: "currentcolor",
2701
2778
  xmlns: "http://www.w3.org/2000/svg",
2702
2779
  viewBox: "0 0 164.61 164.61",
@@ -2709,7 +2786,7 @@ const le = () => {
2709
2786
  /* @__PURE__ */ s.jsx(
2710
2787
  "svg",
2711
2788
  {
2712
- className: e,
2789
+ className: t,
2713
2790
  fill: "currentcolor",
2714
2791
  xmlns: "http://www.w3.org/2000/svg",
2715
2792
  viewBox: "0 0 164.61 164.61",
@@ -2722,7 +2799,7 @@ const le = () => {
2722
2799
  /* @__PURE__ */ s.jsx(
2723
2800
  "svg",
2724
2801
  {
2725
- className: e,
2802
+ className: t,
2726
2803
  fill: "currentcolor",
2727
2804
  xmlns: "http://www.w3.org/2000/svg",
2728
2805
  viewBox: "0 0 164.61 164.61",
@@ -2730,22 +2807,22 @@ const le = () => {
2730
2807
  }
2731
2808
  )
2732
2809
  ),
2733
- active: t,
2734
- disabled: o
2810
+ active: e,
2811
+ disabled: n
2735
2812
  }
2736
- ), w8 = ({
2737
- active: t,
2738
- className: e = "",
2739
- disabled: o
2813
+ ), n6 = ({
2814
+ active: e,
2815
+ className: t = "",
2816
+ disabled: n
2740
2817
  }) => /* @__PURE__ */ s.jsx(
2741
- Z,
2818
+ j,
2742
2819
  {
2743
2820
  ActiveImage: (
2744
2821
  /* icon-sun-active.svg */
2745
2822
  /* @__PURE__ */ s.jsx(
2746
2823
  "svg",
2747
2824
  {
2748
- className: e,
2825
+ className: t,
2749
2826
  fill: "currentcolor",
2750
2827
  xmlns: "http://www.w3.org/2000/svg",
2751
2828
  viewBox: "0 0 164.61 164.61",
@@ -2758,7 +2835,7 @@ const le = () => {
2758
2835
  /* @__PURE__ */ s.jsx(
2759
2836
  "svg",
2760
2837
  {
2761
- className: e,
2838
+ className: t,
2762
2839
  fill: "currentcolor",
2763
2840
  xmlns: "http://www.w3.org/2000/svg",
2764
2841
  viewBox: "0 0 164.61 164.61",
@@ -2771,7 +2848,7 @@ const le = () => {
2771
2848
  /* @__PURE__ */ s.jsx(
2772
2849
  "svg",
2773
2850
  {
2774
- className: e,
2851
+ className: t,
2775
2852
  fill: "currentcolor",
2776
2853
  xmlns: "http://www.w3.org/2000/svg",
2777
2854
  viewBox: "0 0 164.61 164.61",
@@ -2779,22 +2856,22 @@ const le = () => {
2779
2856
  }
2780
2857
  )
2781
2858
  ),
2782
- active: t,
2783
- disabled: o
2859
+ active: e,
2860
+ disabled: n
2784
2861
  }
2785
- ), x8 = ({
2786
- active: t,
2787
- className: e = "",
2788
- disabled: o
2862
+ ), o6 = ({
2863
+ active: e,
2864
+ className: t = "",
2865
+ disabled: n
2789
2866
  }) => /* @__PURE__ */ s.jsx(
2790
- Z,
2867
+ j,
2791
2868
  {
2792
2869
  ActiveImage: (
2793
2870
  /* icon-up-active.svg */
2794
2871
  /* @__PURE__ */ s.jsx(
2795
2872
  "svg",
2796
2873
  {
2797
- className: e,
2874
+ className: t,
2798
2875
  fill: "currentcolor",
2799
2876
  xmlns: "http://www.w3.org/2000/svg",
2800
2877
  viewBox: "0 0 164.61 164.61",
@@ -2807,7 +2884,7 @@ const le = () => {
2807
2884
  /* @__PURE__ */ s.jsx(
2808
2885
  "svg",
2809
2886
  {
2810
- className: e,
2887
+ className: t,
2811
2888
  fill: "currentcolor",
2812
2889
  xmlns: "http://www.w3.org/2000/svg",
2813
2890
  viewBox: "0 0 164.61 164.61",
@@ -2820,7 +2897,7 @@ const le = () => {
2820
2897
  /* @__PURE__ */ s.jsx(
2821
2898
  "svg",
2822
2899
  {
2823
- className: e,
2900
+ className: t,
2824
2901
  fill: "currentcolor",
2825
2902
  xmlns: "http://www.w3.org/2000/svg",
2826
2903
  viewBox: "0 0 164.61 164.61",
@@ -2828,22 +2905,22 @@ const le = () => {
2828
2905
  }
2829
2906
  )
2830
2907
  ),
2831
- active: t,
2832
- disabled: o
2908
+ active: e,
2909
+ disabled: n
2833
2910
  }
2834
- ), M8 = ({
2835
- active: t,
2836
- className: e = "",
2837
- disabled: o
2911
+ ), c6 = ({
2912
+ active: e,
2913
+ className: t = "",
2914
+ disabled: n
2838
2915
  }) => /* @__PURE__ */ s.jsx(
2839
- Z,
2916
+ j,
2840
2917
  {
2841
2918
  ActiveImage: (
2842
2919
  /* icon-volDown-active.svg */
2843
2920
  /* @__PURE__ */ s.jsx(
2844
2921
  "svg",
2845
2922
  {
2846
- className: e,
2923
+ className: t,
2847
2924
  fill: "currentcolor",
2848
2925
  xmlns: "http://www.w3.org/2000/svg",
2849
2926
  viewBox: "0 0 164.61 164.61",
@@ -2856,7 +2933,7 @@ const le = () => {
2856
2933
  /* @__PURE__ */ s.jsx(
2857
2934
  "svg",
2858
2935
  {
2859
- className: e,
2936
+ className: t,
2860
2937
  fill: "currentcolor",
2861
2938
  xmlns: "http://www.w3.org/2000/svg",
2862
2939
  viewBox: "0 0 164.61 164.61",
@@ -2869,7 +2946,7 @@ const le = () => {
2869
2946
  /* @__PURE__ */ s.jsx(
2870
2947
  "svg",
2871
2948
  {
2872
- className: e,
2949
+ className: t,
2873
2950
  fill: "currentcolor",
2874
2951
  xmlns: "http://www.w3.org/2000/svg",
2875
2952
  viewBox: "0 0 164.61 164.61",
@@ -2877,22 +2954,22 @@ const le = () => {
2877
2954
  }
2878
2955
  )
2879
2956
  ),
2880
- active: t,
2881
- disabled: o
2957
+ active: e,
2958
+ disabled: n
2882
2959
  }
2883
- ), m8 = ({
2884
- active: t,
2885
- className: e = "",
2886
- disabled: o
2960
+ ), r6 = ({
2961
+ active: e,
2962
+ className: t = "",
2963
+ disabled: n
2887
2964
  }) => /* @__PURE__ */ s.jsx(
2888
- Z,
2965
+ j,
2889
2966
  {
2890
2967
  ActiveImage: (
2891
2968
  /* icon-volMute-active.svg */
2892
2969
  /* @__PURE__ */ s.jsx(
2893
2970
  "svg",
2894
2971
  {
2895
- className: e,
2972
+ className: t,
2896
2973
  fill: "currentcolor",
2897
2974
  xmlns: "http://www.w3.org/2000/svg",
2898
2975
  viewBox: "0 0 164.61 164.61",
@@ -2905,7 +2982,7 @@ const le = () => {
2905
2982
  /* @__PURE__ */ s.jsx(
2906
2983
  "svg",
2907
2984
  {
2908
- className: e,
2985
+ className: t,
2909
2986
  fill: "currentcolor",
2910
2987
  xmlns: "http://www.w3.org/2000/svg",
2911
2988
  viewBox: "0 0 164.61 164.61",
@@ -2918,7 +2995,7 @@ const le = () => {
2918
2995
  /* @__PURE__ */ s.jsx(
2919
2996
  "svg",
2920
2997
  {
2921
- className: e,
2998
+ className: t,
2922
2999
  fill: "currentcolor",
2923
3000
  xmlns: "http://www.w3.org/2000/svg",
2924
3001
  viewBox: "0 0 164.61 164.61",
@@ -2926,22 +3003,22 @@ const le = () => {
2926
3003
  }
2927
3004
  )
2928
3005
  ),
2929
- active: t,
2930
- disabled: o
3006
+ active: e,
3007
+ disabled: n
2931
3008
  }
2932
- ), Z8 = ({
2933
- active: t,
2934
- className: e = "",
2935
- disabled: o
3009
+ ), l6 = ({
3010
+ active: e,
3011
+ className: t = "",
3012
+ disabled: n
2936
3013
  }) => /* @__PURE__ */ s.jsx(
2937
- Z,
3014
+ j,
2938
3015
  {
2939
3016
  ActiveImage: (
2940
3017
  /* icon-volUp-active.svg */
2941
3018
  /* @__PURE__ */ s.jsx(
2942
3019
  "svg",
2943
3020
  {
2944
- className: e,
3021
+ className: t,
2945
3022
  fill: "currentcolor",
2946
3023
  xmlns: "http://www.w3.org/2000/svg",
2947
3024
  viewBox: "0 0 164.61 164.61",
@@ -2954,7 +3031,7 @@ const le = () => {
2954
3031
  /* @__PURE__ */ s.jsx(
2955
3032
  "svg",
2956
3033
  {
2957
- className: e,
3034
+ className: t,
2958
3035
  fill: "currentcolor",
2959
3036
  xmlns: "http://www.w3.org/2000/svg",
2960
3037
  viewBox: "0 0 164.61 164.61",
@@ -2967,7 +3044,7 @@ const le = () => {
2967
3044
  /* @__PURE__ */ s.jsx(
2968
3045
  "svg",
2969
3046
  {
2970
- className: e,
3047
+ className: t,
2971
3048
  fill: "currentcolor",
2972
3049
  xmlns: "http://www.w3.org/2000/svg",
2973
3050
  viewBox: "0 0 164.61 164.61",
@@ -2975,22 +3052,22 @@ const le = () => {
2975
3052
  }
2976
3053
  )
2977
3054
  ),
2978
- active: t,
2979
- disabled: o
3055
+ active: e,
3056
+ disabled: n
2980
3057
  }
2981
- ), j8 = ({
2982
- active: t,
2983
- className: e = "",
2984
- disabled: o
3058
+ ), i6 = ({
3059
+ active: e,
3060
+ className: t = "",
3061
+ disabled: n
2985
3062
  }) => /* @__PURE__ */ s.jsx(
2986
- Z,
3063
+ j,
2987
3064
  {
2988
3065
  ActiveImage: (
2989
3066
  /* icon-wireless-active.svg */
2990
3067
  /* @__PURE__ */ s.jsx(
2991
3068
  "svg",
2992
3069
  {
2993
- className: e,
3070
+ className: t,
2994
3071
  fill: "currentcolor",
2995
3072
  xmlns: "http://www.w3.org/2000/svg",
2996
3073
  viewBox: "0 0 164.61 164.61",
@@ -3003,7 +3080,7 @@ const le = () => {
3003
3080
  /* @__PURE__ */ s.jsx(
3004
3081
  "svg",
3005
3082
  {
3006
- className: e,
3083
+ className: t,
3007
3084
  fill: "currentcolor",
3008
3085
  xmlns: "http://www.w3.org/2000/svg",
3009
3086
  viewBox: "0 0 164.61 164.61",
@@ -3016,7 +3093,7 @@ const le = () => {
3016
3093
  /* @__PURE__ */ s.jsx(
3017
3094
  "svg",
3018
3095
  {
3019
- className: e,
3096
+ className: t,
3020
3097
  fill: "currentcolor",
3021
3098
  xmlns: "http://www.w3.org/2000/svg",
3022
3099
  viewBox: "0 0 164.61 164.61",
@@ -3024,22 +3101,22 @@ const le = () => {
3024
3101
  }
3025
3102
  )
3026
3103
  ),
3027
- active: t,
3028
- disabled: o
3104
+ active: e,
3105
+ disabled: n
3029
3106
  }
3030
- ), C8 = ({
3031
- active: t,
3032
- className: e = "",
3033
- disabled: o
3107
+ ), a6 = ({
3108
+ active: e,
3109
+ className: t = "",
3110
+ disabled: n
3034
3111
  }) => /* @__PURE__ */ s.jsx(
3035
- Z,
3112
+ j,
3036
3113
  {
3037
3114
  ActiveImage: (
3038
3115
  /* icon-x-active.svg */
3039
3116
  /* @__PURE__ */ s.jsx(
3040
3117
  "svg",
3041
3118
  {
3042
- className: e,
3119
+ className: t,
3043
3120
  fill: "currentcolor",
3044
3121
  xmlns: "http://www.w3.org/2000/svg",
3045
3122
  viewBox: "0 0 164.61 164.61",
@@ -3052,7 +3129,7 @@ const le = () => {
3052
3129
  /* @__PURE__ */ s.jsx(
3053
3130
  "svg",
3054
3131
  {
3055
- className: e,
3132
+ className: t,
3056
3133
  fill: "currentcolor",
3057
3134
  xmlns: "http://www.w3.org/2000/svg",
3058
3135
  viewBox: "0 0 164.61 164.61",
@@ -3065,7 +3142,7 @@ const le = () => {
3065
3142
  /* @__PURE__ */ s.jsx(
3066
3143
  "svg",
3067
3144
  {
3068
- className: e,
3145
+ className: t,
3069
3146
  fill: "currentcolor",
3070
3147
  xmlns: "http://www.w3.org/2000/svg",
3071
3148
  viewBox: "0 0 164.61 164.61",
@@ -3073,22 +3150,22 @@ const le = () => {
3073
3150
  }
3074
3151
  )
3075
3152
  ),
3076
- active: t,
3077
- disabled: o
3153
+ active: e,
3154
+ disabled: n
3078
3155
  }
3079
- ), S8 = ({
3080
- active: t,
3081
- className: e = "",
3082
- disabled: o
3156
+ ), u6 = ({
3157
+ active: e,
3158
+ className: t = "",
3159
+ disabled: n
3083
3160
  }) => /* @__PURE__ */ s.jsx(
3084
- Z,
3161
+ j,
3085
3162
  {
3086
3163
  ActiveImage: (
3087
3164
  /* icon-xbox-active.svg */
3088
3165
  /* @__PURE__ */ s.jsx(
3089
3166
  "svg",
3090
3167
  {
3091
- className: e,
3168
+ className: t,
3092
3169
  fill: "currentcolor",
3093
3170
  xmlns: "http://www.w3.org/2000/svg",
3094
3171
  viewBox: "0 0 164.61 164.61",
@@ -3101,7 +3178,7 @@ const le = () => {
3101
3178
  /* @__PURE__ */ s.jsx(
3102
3179
  "svg",
3103
3180
  {
3104
- className: e,
3181
+ className: t,
3105
3182
  fill: "currentcolor",
3106
3183
  xmlns: "http://www.w3.org/2000/svg",
3107
3184
  viewBox: "0 0 164.61 164.61",
@@ -3114,7 +3191,7 @@ const le = () => {
3114
3191
  /* @__PURE__ */ s.jsx(
3115
3192
  "svg",
3116
3193
  {
3117
- className: e,
3194
+ className: t,
3118
3195
  fill: "currentcolor",
3119
3196
  xmlns: "http://www.w3.org/2000/svg",
3120
3197
  viewBox: "0 0 164.61 164.61",
@@ -3122,22 +3199,22 @@ const le = () => {
3122
3199
  }
3123
3200
  )
3124
3201
  ),
3125
- active: t,
3126
- disabled: o
3202
+ active: e,
3203
+ disabled: n
3127
3204
  }
3128
- ), b8 = ({
3129
- active: t,
3130
- className: e = "",
3131
- disabled: o
3205
+ ), d6 = ({
3206
+ active: e,
3207
+ className: t = "",
3208
+ disabled: n
3132
3209
  }) => /* @__PURE__ */ s.jsx(
3133
- Z,
3210
+ j,
3134
3211
  {
3135
3212
  ActiveImage: (
3136
3213
  /* icon-mic-active.svg */
3137
3214
  /* @__PURE__ */ s.jsx(
3138
3215
  "svg",
3139
3216
  {
3140
- className: e,
3217
+ className: t,
3141
3218
  fill: "currentcolor",
3142
3219
  xmlns: "http://www.w3.org/2000/svg",
3143
3220
  viewBox: "0 0 164.61 164.61",
@@ -3150,7 +3227,7 @@ const le = () => {
3150
3227
  /* @__PURE__ */ s.jsx(
3151
3228
  "svg",
3152
3229
  {
3153
- className: e,
3230
+ className: t,
3154
3231
  fill: "currentcolor",
3155
3232
  xmlns: "http://www.w3.org/2000/svg",
3156
3233
  viewBox: "0 0 164.61 164.61",
@@ -3163,7 +3240,7 @@ const le = () => {
3163
3240
  /* @__PURE__ */ s.jsx(
3164
3241
  "svg",
3165
3242
  {
3166
- className: e,
3243
+ className: t,
3167
3244
  fill: "currentcolor",
3168
3245
  xmlns: "http://www.w3.org/2000/svg",
3169
3246
  viewBox: "0 0 164.61 164.61",
@@ -3171,238 +3248,239 @@ const le = () => {
3171
3248
  }
3172
3249
  )
3173
3250
  ),
3174
- active: t,
3175
- disabled: o
3176
- }
3177
- ), I8 = {
3178
- Alert: Y2,
3179
- Camera: J2,
3180
- DownArrow: N2,
3181
- Ban: z2,
3182
- Check: X2,
3183
- Controller: Q2,
3184
- Elipses: e8,
3185
- Flag: t8,
3186
- Gear: s8,
3187
- Glass: o8,
3188
- Hdmi: n8,
3189
- Laptop: r8,
3190
- LeftArrow: c8,
3191
- Light: l8,
3192
- Mic: b8,
3193
- Moon: i8,
3194
- Playstation: a8,
3195
- Podium: u8,
3196
- Power: d8,
3197
- Privacy: h8,
3198
- Question: v8,
3199
- RightArrow: g8,
3200
- RoomPC: f8,
3201
- Shade: p8,
3202
- Sun: w8,
3203
- UpArrow: x8,
3204
- VolDown: M8,
3205
- VolMute: m8,
3206
- VolUp: Z8,
3207
- Wireless: j8,
3208
- X: C8,
3209
- Xbox: S8
3251
+ active: e,
3252
+ disabled: n
3253
+ }
3254
+ ), h6 = {
3255
+ Alert: D8,
3256
+ Camera: A8,
3257
+ DownArrow: V8,
3258
+ Ban: $8,
3259
+ Check: B8,
3260
+ Controller: O8,
3261
+ Elipses: k8,
3262
+ Flag: U8,
3263
+ Gear: F8,
3264
+ Glass: W8,
3265
+ Hdmi: H8,
3266
+ Laptop: K8,
3267
+ LeftArrow: G8,
3268
+ Light: q8,
3269
+ Mic: d6,
3270
+ Moon: Y8,
3271
+ Playstation: z8,
3272
+ Podium: J8,
3273
+ Power: X8,
3274
+ Privacy: Q8,
3275
+ Question: N8,
3276
+ RightArrow: e6,
3277
+ RoomPC: t6,
3278
+ Shade: s6,
3279
+ Sun: n6,
3280
+ UpArrow: o6,
3281
+ VolDown: c6,
3282
+ VolMute: r6,
3283
+ VolUp: l6,
3284
+ Wireless: i6,
3285
+ X: a6,
3286
+ Xbox: u6
3210
3287
  };
3211
- function ie({
3212
- name: t,
3213
- iconsDictionary: e = I8,
3214
- ...o
3288
+ function Je({
3289
+ name: e,
3290
+ iconsDictionary: t = h6,
3291
+ ...n
3215
3292
  }) {
3216
- const r = e[t] ?? null;
3217
- return r || console.error(`Icon ${t} not found in dictionary`), /* @__PURE__ */ s.jsx(q2, { multiIcon: r, ...o });
3293
+ const c = t[e] ?? null;
3294
+ return c || console.error(`Icon ${e} not found in dictionary`), /* @__PURE__ */ s.jsx(P8, { multiIcon: c, ...n });
3218
3295
  }
3219
- const y8 = "_grid_1cmpp_1", R8 = "_header_1cmpp_11", E8 = "_content_1cmpp_17", _8 = "_footer_1cmpp_23", T8 = "_volume_1cmpp_29", a1 = {
3220
- grid: y8,
3221
- header: R8,
3222
- content: E8,
3223
- footer: _8,
3224
- volume: T8
3225
- }, ae = ({ header: t, footer: e, content: o, volume: r, showVolume: c }) => /* @__PURE__ */ s.jsxs("div", { className: a1.grid, children: [
3226
- /* @__PURE__ */ s.jsx("div", { className: a1.header, children: t }),
3227
- /* @__PURE__ */ s.jsx("div", { className: a1.content, children: o }),
3228
- c && /* @__PURE__ */ s.jsx("div", { className: a1.volume, children: r }),
3229
- /* @__PURE__ */ s.jsx("div", { className: a1.footer, children: e })
3230
- ] }), L8 = "_grid_11w5q_1", P8 = "_header_11w5q_11", $8 = "_content_11w5q_17", w1 = {
3231
- grid: L8,
3232
- header: P8,
3233
- content: $8,
3234
- "left-nav": "_left-nav_11w5q_23"
3235
- }, ue = ({ className: t, header: e, content: o, leftNav: r }) => /* @__PURE__ */ s.jsxs("div", { className: `${t} ${w1.grid}`, children: [
3236
- /* @__PURE__ */ s.jsx("div", { className: w1.header, children: e }),
3237
- r && /* @__PURE__ */ s.jsx("div", { className: w1.leftNav, children: r }),
3238
- /* @__PURE__ */ s.jsx("div", { className: w1.content, children: o })
3239
- ] }), D8 = "_grid_1uwfo_1", A8 = "_header_1uwfo_11", B8 = "_content_1uwfo_17", T1 = {
3240
- grid: D8,
3241
- header: A8,
3242
- content: B8
3243
- }, de = ({ className: t, header: e, content: o }) => /* @__PURE__ */ s.jsxs("div", { className: `${t} ${T1.grid}`, children: [
3244
- /* @__PURE__ */ s.jsx("div", { className: T1.header, children: e }),
3245
- /* @__PURE__ */ s.jsx("div", { className: T1.content, children: o })
3296
+ const v6 = "_grid_1cmpp_1", g6 = "_header_1cmpp_11", f6 = "_content_1cmpp_17", p6 = "_footer_1cmpp_23", w6 = "_volume_1cmpp_29", d1 = {
3297
+ grid: v6,
3298
+ header: g6,
3299
+ content: f6,
3300
+ footer: p6,
3301
+ volume: w6
3302
+ }, Xe = ({ header: e, footer: t, content: n, volume: c, showVolume: r }) => /* @__PURE__ */ s.jsxs("div", { className: d1.grid, children: [
3303
+ /* @__PURE__ */ s.jsx("div", { className: d1.header, children: e }),
3304
+ /* @__PURE__ */ s.jsx("div", { className: d1.content, children: n }),
3305
+ r && /* @__PURE__ */ s.jsx("div", { className: d1.volume, children: c }),
3306
+ /* @__PURE__ */ s.jsx("div", { className: d1.footer, children: t })
3307
+ ] }), x6 = "_grid_11w5q_1", M6 = "_header_11w5q_11", m6 = "_content_11w5q_17", m1 = {
3308
+ grid: x6,
3309
+ header: M6,
3310
+ content: m6
3311
+ }, Qe = ({ className: e, header: t, content: n, leftNav: c }) => /* @__PURE__ */ s.jsxs("div", { className: `${e} ${m1.grid}`, children: [
3312
+ /* @__PURE__ */ s.jsx("div", { className: m1.header, children: t }),
3313
+ c && /* @__PURE__ */ s.jsx("div", { className: m1.leftNav, children: c }),
3314
+ /* @__PURE__ */ s.jsx("div", { className: m1.content, children: n })
3315
+ ] }), Z6 = "_grid_1uwfo_1", j6 = "_header_1uwfo_11", C6 = "_content_1uwfo_17", $1 = {
3316
+ grid: Z6,
3317
+ header: j6,
3318
+ content: C6
3319
+ }, Ne = ({ className: e, header: t, content: n }) => /* @__PURE__ */ s.jsxs("div", { className: `${e} ${$1.grid}`, children: [
3320
+ /* @__PURE__ */ s.jsx("div", { className: $1.header, children: t }),
3321
+ /* @__PURE__ */ s.jsx("div", { className: $1.content, children: n })
3246
3322
  ] });
3247
- function he() {
3323
+ function e5() {
3248
3324
  return console.log(location.pathname), location.pathname;
3249
3325
  }
3250
- var O8 = /* @__PURE__ */ ((t) => (t[t.NotSet = 0] = "NotSet", t[t.Sunday = 1] = "Sunday", t[t.Monday = 2] = "Monday", t[t.Tuesday = 4] = "Tuesday", t[t.Wednesday = 8] = "Wednesday", t[t.Thursday = 16] = "Thursday", t[t.Friday = 32] = "Friday", t[t.Saturday = 64] = "Saturday", t))(O8 || {});
3251
- class ve {
3252
- constructor(e, o) {
3253
- H(this, "path");
3254
- H(this, "handler");
3255
- this.path = e, this.handler = o;
3326
+ var S6 = /* @__PURE__ */ ((e) => (e[e.NotSet = 0] = "NotSet", e[e.Sunday = 1] = "Sunday", e[e.Monday = 2] = "Monday", e[e.Tuesday = 4] = "Tuesday", e[e.Wednesday = 8] = "Wednesday", e[e.Thursday = 16] = "Thursday", e[e.Friday = 32] = "Friday", e[e.Saturday = 64] = "Saturday", e))(S6 || {});
3327
+ class t5 {
3328
+ constructor(t, n) {
3329
+ G(this, "path");
3330
+ G(this, "handler");
3331
+ this.path = t, this.handler = n;
3256
3332
  }
3257
3333
  }
3258
- const ge = "$off";
3259
- class fe {
3334
+ const s5 = "$off";
3335
+ class n5 {
3260
3336
  constructor() {
3261
- H(this, "currentShareText");
3262
- H(this, "enabled");
3263
- H(this, "isSharing");
3337
+ G(this, "currentShareText");
3338
+ G(this, "enabled");
3339
+ G(this, "isSharing");
3264
3340
  }
3265
3341
  }
3266
3342
  export {
3267
- C6 as Clock,
3268
- O8 as DaysOfWeek,
3269
- le as ErrorBox,
3270
- q2 as IconButton,
3271
- Y2 as IconMultiAlert,
3272
- z2 as IconMultiBan,
3273
- J2 as IconMultiCamera,
3274
- X2 as IconMultiCheck,
3275
- Q2 as IconMultiController,
3276
- N2 as IconMultiDownArrow,
3277
- e8 as IconMultiElipses,
3278
- t8 as IconMultiFlag,
3279
- s8 as IconMultiGear,
3280
- o8 as IconMultiGlass,
3281
- n8 as IconMultiHdmi,
3282
- r8 as IconMultiLaptop,
3283
- c8 as IconMultiLeftArrow,
3284
- l8 as IconMultiLight,
3285
- i8 as IconMultiMoon,
3286
- a8 as IconMultiPlaystation,
3287
- u8 as IconMultiPodium,
3288
- d8 as IconMultiPower,
3289
- h8 as IconMultiPrivacy,
3290
- v8 as IconMultiQuestion,
3291
- g8 as IconMultiRightArrow,
3292
- f8 as IconMultiRoomPC,
3293
- p8 as IconMultiShade,
3294
- w8 as IconMultiSun,
3295
- x8 as IconMultiUpArrow,
3296
- M8 as IconMultiVolDown,
3297
- m8 as IconMultiVolMute,
3298
- Z8 as IconMultiVolUp,
3299
- j8 as IconMultiWireless,
3300
- C8 as IconMultiX,
3301
- S8 as IconMultiXbox,
3302
- ae as MainLayout,
3303
- ve as MessageHandler,
3304
- m6 as MobileControlProvider,
3305
- Z as MultiStateIconContainer,
3306
- ie as NamedIconButton,
3307
- fe as ShareState,
3308
- ue as TechLayout,
3309
- de as TechPinLayout,
3310
- he as getBaseLocation,
3311
- L1 as httpClient,
3312
- ge as roomOffSourceKey,
3313
- m as store,
3314
- q as uiActions,
3315
- M2 as uiReducer,
3316
- K8 as useApiPath,
3317
- a2 as useAppConfig,
3318
- i2 as useAppDispatch,
3343
+ de as Clock,
3344
+ S6 as DaysOfWeek,
3345
+ ze as ErrorBox,
3346
+ P8 as IconButton,
3347
+ D8 as IconMultiAlert,
3348
+ $8 as IconMultiBan,
3349
+ A8 as IconMultiCamera,
3350
+ B8 as IconMultiCheck,
3351
+ O8 as IconMultiController,
3352
+ V8 as IconMultiDownArrow,
3353
+ k8 as IconMultiElipses,
3354
+ U8 as IconMultiFlag,
3355
+ F8 as IconMultiGear,
3356
+ W8 as IconMultiGlass,
3357
+ H8 as IconMultiHdmi,
3358
+ K8 as IconMultiLaptop,
3359
+ G8 as IconMultiLeftArrow,
3360
+ q8 as IconMultiLight,
3361
+ Y8 as IconMultiMoon,
3362
+ z8 as IconMultiPlaystation,
3363
+ J8 as IconMultiPodium,
3364
+ X8 as IconMultiPower,
3365
+ Q8 as IconMultiPrivacy,
3366
+ N8 as IconMultiQuestion,
3367
+ e6 as IconMultiRightArrow,
3368
+ t6 as IconMultiRoomPC,
3369
+ s6 as IconMultiShade,
3370
+ n6 as IconMultiSun,
3371
+ o6 as IconMultiUpArrow,
3372
+ c6 as IconMultiVolDown,
3373
+ r6 as IconMultiVolMute,
3374
+ l6 as IconMultiVolUp,
3375
+ i6 as IconMultiWireless,
3376
+ a6 as IconMultiX,
3377
+ u6 as IconMultiXbox,
3378
+ Xe as MainLayout,
3379
+ t5 as MessageHandler,
3380
+ ie as MobileControlProvider,
3381
+ j as MultiStateIconContainer,
3382
+ Je as NamedIconButton,
3383
+ n5 as ShareState,
3384
+ Qe as TechLayout,
3385
+ Ne as TechPinLayout,
3386
+ e5 as getBaseLocation,
3387
+ O1 as httpClient,
3388
+ s5 as roomOffSourceKey,
3389
+ Z as store,
3390
+ z as uiActions,
3391
+ E2 as uiReducer,
3392
+ T6 as useApiPath,
3393
+ w2 as useAppConfig,
3394
+ h2 as useAppDispatch,
3319
3395
  p as useAppSelector,
3320
- j6 as useAvrControl,
3396
+ ue as useAvrControl,
3321
3397
  g as useButtonHeldHeartbeat,
3322
- b2 as useClientId,
3323
- F2 as useDeviceIBasicVolumeWithFeedback,
3324
- S6 as useDevicePresetsModel,
3325
- b6 as useEndpoint,
3326
- E2 as useError,
3327
- te as useGetAllDeviceStateFromRoomConfiguration,
3328
- u2 as useGetAllDevices,
3329
- w6 as useGetCurrentPopoverIdForGroup,
3330
- _ as useGetDevice,
3331
- Z6 as useGetIBasicVolumeWithFeedback,
3332
- a6 as useGetRoomDisplayStates,
3333
- u6 as useGetZoomRoomControllerKey,
3334
- x3 as useIBasicVolumeWithFeedback,
3335
- I6 as useIChannel,
3336
- y6 as useIColor,
3337
- R6 as useICommunicationMonitor,
3338
- _6 as useIDPad,
3339
- E6 as useIDeviceInfoMessenger,
3340
- T6 as useIDspPresets,
3341
- L6 as useIDvr,
3342
- P6 as useIEssentialsRoomCombiner,
3343
- M3 as useIHasPowerControl,
3344
- $1 as useIHasSelectableItems,
3345
- $6 as useIHumiditySensor,
3346
- D6 as useILevelControls,
3347
- A6 as useILightingScenes,
3348
- B6 as useIMatrixRouting,
3349
- O6 as useIMcCiscoCodecUserInterfaceAppControl,
3350
- V6 as useINumeric,
3351
- k6 as useIProjectorScreenLiftControl,
3352
- U6 as useIRoomEventSchedule,
3353
- F6 as useIRunDefaultPresentRoute,
3354
- W6 as useIRunDirectRouteAction,
3355
- H6 as useIRunRouteAction,
3356
- K6 as useISetTopBoxControls,
3357
- G6 as useIShadesOpenCloseStop,
3358
- q6 as useIShutdownPromptTimer,
3359
- Y6 as useISwitchedOutput,
3360
- z6 as useITechPassword,
3361
- J6 as useITemperatureSensor,
3362
- X6 as useITheme,
3363
- Q6 as useITransport,
3364
- T2 as useInitialize,
3365
- v6 as useIsTouchpanel,
3366
- G8 as useLogoPath,
3367
- N6 as useMobileControlTouchpanelController,
3368
- se as useOverflow,
3369
- q8 as usePartnerMetadata,
3370
- U2 as usePressHoldRelease,
3371
- l6 as useRoomAdvancedSharingActive,
3372
- X8 as useRoomAudioControlPointList,
3373
- s6 as useRoomCodecContentDestinationKey,
3374
- Y8 as useRoomConfiguration,
3375
- N8 as useRoomDestinationList,
3376
- Q8 as useRoomDestinations,
3377
- e6 as useRoomEnvironmentalDevices,
3378
- oe as useRoomIBasicVolumeWithFeedback,
3379
- o6 as useRoomInCall,
3380
- r6 as useRoomIsCoolingDown,
3381
- c6 as useRoomIsOn,
3382
- n6 as useRoomIsWarmingUp,
3383
- S2 as useRoomKey,
3384
- j2 as useRoomLevelControls,
3385
- z8 as useRoomName,
3386
- t6 as useRoomProgramAudioDestinationKey,
3387
- i6 as useRoomShareState,
3388
- J8 as useRoomSourceList,
3389
- D1 as useRoomState,
3390
- Z2 as useRoomVolume,
3391
- d6 as useRuntimeInfo,
3392
- ne as useScroll,
3393
- R2 as useServerIsRunningOnProcessorHardware,
3394
- f6 as useShowIncomingCallModal,
3395
- p6 as useShowModal,
3396
- x6 as useShowPopoverById,
3397
- _2 as useShowReconnect,
3398
- g6 as useShowShutdownModal,
3399
- re as useSystemControl,
3400
- I2 as useSystemUuid,
3401
- M6 as useTheme,
3402
- ce as useTimeAndDate,
3403
- h6 as useTouchpanelKey,
3404
- ee as useTwoWayDisplayBase,
3405
- y2 as useUserCode,
3406
- S as useWebsocketContext,
3407
- C2 as useWsIsConnected
3398
+ u8 as useClientId,
3399
+ y8 as useDeviceIBasicVolumeWithFeedback,
3400
+ he as useDevicePresetsModel,
3401
+ ve as useEndpoint,
3402
+ g8 as useError,
3403
+ We as useGetAllDeviceStateFromRoomConfiguration,
3404
+ m2 as useGetAllDevices,
3405
+ $6 as useGetAllRooms,
3406
+ ce as useGetCurrentPopoverIdForGroup,
3407
+ T as useGetDevice,
3408
+ ae as useGetIBasicVolumeWithFeedback,
3409
+ A6 as useGetRoom,
3410
+ X6 as useGetRoomDisplayStates,
3411
+ Q6 as useGetZoomRoomControllerKey,
3412
+ C3 as useIBasicVolumeWithFeedback,
3413
+ ge as useIChannel,
3414
+ fe as useIColor,
3415
+ pe as useICommunicationMonitor,
3416
+ xe as useIDPad,
3417
+ we as useIDeviceInfoMessenger,
3418
+ Me as useIDspPresets,
3419
+ me as useIDvr,
3420
+ Ze as useIEssentialsRoomCombiner,
3421
+ S3 as useIHasPowerControl,
3422
+ V1 as useIHasSelectableItems,
3423
+ je as useIHumiditySensor,
3424
+ Ce as useILevelControls,
3425
+ Se as useILightingScenes,
3426
+ be as useIMatrixRouting,
3427
+ Ie as useIMcCiscoCodecUserInterfaceAppControl,
3428
+ Re as useINumeric,
3429
+ ye as useIProjectorScreenLiftControl,
3430
+ Ee as useIRoomEventSchedule,
3431
+ _e as useIRunDefaultPresentRoute,
3432
+ Te as useIRunDirectRouteAction,
3433
+ Le as useIRunRouteAction,
3434
+ Pe as useISetTopBoxControls,
3435
+ De as useIShadesOpenCloseStop,
3436
+ $e as useIShutdownPromptTimer,
3437
+ Ae as useISwitchedOutput,
3438
+ Be as useITechPassword,
3439
+ Oe as useITemperatureSensor,
3440
+ Ve as useITheme,
3441
+ ke as useITransport,
3442
+ p8 as useInitialize,
3443
+ te as useIsTouchpanel,
3444
+ L6 as useLogoPath,
3445
+ Ue as useMobileControlTouchpanelController,
3446
+ He as useOverflow,
3447
+ P6 as usePartnerMetadata,
3448
+ R8 as usePressHoldRelease,
3449
+ z6 as useRoomAdvancedSharingActive,
3450
+ V6 as useRoomAudioControlPointList,
3451
+ H6 as useRoomCodecContentDestinationKey,
3452
+ D6 as useRoomConfiguration,
3453
+ U6 as useRoomDestinationList,
3454
+ k6 as useRoomDestinations,
3455
+ F6 as useRoomEnvironmentalDevices,
3456
+ Ke as useRoomIBasicVolumeWithFeedback,
3457
+ K6 as useRoomInCall,
3458
+ q6 as useRoomIsCoolingDown,
3459
+ Y6 as useRoomIsOn,
3460
+ G6 as useRoomIsWarmingUp,
3461
+ a8 as useRoomKey,
3462
+ Q2 as useRoomLevelControls,
3463
+ B6 as useRoomName,
3464
+ W6 as useRoomProgramAudioDestinationKey,
3465
+ J6 as useRoomShareState,
3466
+ O6 as useRoomSourceList,
3467
+ j1 as useRoomState,
3468
+ X2 as useRoomVolume,
3469
+ N6 as useRuntimeInfo,
3470
+ Ge as useScroll,
3471
+ v8 as useServerIsRunningOnProcessorHardware,
3472
+ ne as useShowIncomingCallModal,
3473
+ oe as useShowModal,
3474
+ re as useShowPopoverById,
3475
+ f8 as useShowReconnect,
3476
+ se as useShowShutdownModal,
3477
+ qe as useSystemControl,
3478
+ d8 as useSystemUuid,
3479
+ le as useTheme,
3480
+ Ye as useTimeAndDate,
3481
+ ee as useTouchpanelKey,
3482
+ Fe as useTwoWayDisplayBase,
3483
+ h8 as useUserCode,
3484
+ b as useWebsocketContext,
3485
+ i8 as useWsIsConnected
3408
3486
  };