@pepperdash/mobile-control-react-app-core 1.13.0 → 1.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mobile-control-react-app-core.es.js +635 -631
- package/dist/mobile-control-react-app-core.umd.js +10 -10
- package/dist/store/hooks.d.ts +9 -5
- package/dist/store/hooks.d.ts.map +1 -1
- package/dist/store/index.d.ts +2 -17
- package/dist/store/index.d.ts.map +1 -1
- package/dist/store/runtimeConfig/runtimeConfig.slice.d.ts.map +1 -1
- package/dist/store/{rootReducer.d.ts → store.d.ts} +3 -16
- package/dist/store/store.d.ts.map +1 -0
- package/dist/store/ui/ui.slice.d.ts +21 -0
- package/dist/store/ui/ui.slice.d.ts.map +1 -1
- package/dist/store/ui/uiSelectors.d.ts +1 -0
- package/dist/store/ui/uiSelectors.d.ts.map +1 -1
- package/dist/utils/WebsocketProvider.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/store/rootReducer.d.ts.map +0 -1
|
@@ -1,13 +1,17 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var V = (t, e, s) => (
|
|
4
|
-
import
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import * as
|
|
8
|
-
import
|
|
9
|
-
import { useNavigate as
|
|
10
|
-
const u2 =
|
|
1
|
+
var q3 = Object.defineProperty;
|
|
2
|
+
var Y3 = (t, e, s) => e in t ? q3(t, e, { enumerable: !0, configurable: !0, writable: !0, value: s }) : t[e] = s;
|
|
3
|
+
var V = (t, e, s) => (Y3(t, typeof e != "symbol" ? e + "" : e, s), s);
|
|
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 o2 } from "@reduxjs/toolkit";
|
|
7
|
+
import * as a3 from "lodash";
|
|
8
|
+
import u3, { createContext as s2, useState as H, 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(), w = Q3.withTypes(), a2 = () => w((t) => t.appConfig.config), K8 = () => w((t) => t.appConfig.config.apiPath), u2 = () => w((t) => t.devices);
|
|
11
|
+
function T(t) {
|
|
12
|
+
return w((e) => e.devices[t] ? e.devices[t] : void 0);
|
|
13
|
+
}
|
|
14
|
+
const d2 = {
|
|
11
15
|
config: {
|
|
12
16
|
enableDev: !1,
|
|
13
17
|
apiPath: "",
|
|
@@ -17,32 +21,32 @@ const u2 = {
|
|
|
17
21
|
loginMode: "",
|
|
18
22
|
modes: {}
|
|
19
23
|
}
|
|
20
|
-
},
|
|
24
|
+
}, h3 = d1({
|
|
21
25
|
name: "appConfig",
|
|
22
|
-
initialState:
|
|
26
|
+
initialState: d2,
|
|
23
27
|
reducers: {
|
|
24
28
|
setAppConfig(t, e) {
|
|
25
29
|
t.config = e.payload;
|
|
26
30
|
}
|
|
27
31
|
}
|
|
28
|
-
}),
|
|
32
|
+
}), h2 = h3.actions, v2 = h3.reducer, n3 = {}, v3 = d1({
|
|
29
33
|
name: "devices",
|
|
30
|
-
initialState:
|
|
34
|
+
initialState: n3,
|
|
31
35
|
reducers: {
|
|
32
36
|
setDeviceState(t, e) {
|
|
33
37
|
const s = e.payload.type, r = s.slice(s.lastIndexOf("/") + 1);
|
|
34
38
|
if (!r)
|
|
35
39
|
return;
|
|
36
|
-
const c = e.payload.content, u = t[r] ?? {}, i =
|
|
40
|
+
const c = e.payload.content, u = t[r] ?? {}, i = a3.merge(u, c);
|
|
37
41
|
return t[r] = i, t;
|
|
38
42
|
},
|
|
39
43
|
clearDevices() {
|
|
40
|
-
return
|
|
44
|
+
return n3;
|
|
41
45
|
}
|
|
42
46
|
}
|
|
43
|
-
}), N =
|
|
47
|
+
}), N = v3.actions, g2 = v3.reducer, r3 = {}, g3 = d1({
|
|
44
48
|
name: "rooms",
|
|
45
|
-
initialState:
|
|
49
|
+
initialState: r3,
|
|
46
50
|
reducers: {
|
|
47
51
|
setRoomState(t, e) {
|
|
48
52
|
const s = e.payload.type, r = s.slice(s.lastIndexOf("/") + 1);
|
|
@@ -50,14 +54,14 @@ const u2 = {
|
|
|
50
54
|
return;
|
|
51
55
|
const c = e.payload.content;
|
|
52
56
|
console.log(c);
|
|
53
|
-
const u = t[r] ?? {}, i =
|
|
57
|
+
const u = t[r] ?? {}, i = a3.merge(u, c);
|
|
54
58
|
return t[r] = i, console.log(t), t;
|
|
55
59
|
},
|
|
56
60
|
clearRooms() {
|
|
57
|
-
return
|
|
61
|
+
return r3;
|
|
58
62
|
}
|
|
59
63
|
}
|
|
60
|
-
}), e1 =
|
|
64
|
+
}), e1 = g3.actions, f2 = g3.reducer, w2 = {
|
|
61
65
|
apiVersion: "",
|
|
62
66
|
serverIsRunningOnProcessorHardware: !1,
|
|
63
67
|
websocket: {
|
|
@@ -85,9 +89,9 @@ const u2 = {
|
|
|
85
89
|
userCode: "",
|
|
86
90
|
qrUrl: ""
|
|
87
91
|
}
|
|
88
|
-
},
|
|
92
|
+
}, f3 = d1({
|
|
89
93
|
name: "runtimeConfig",
|
|
90
|
-
initialState:
|
|
94
|
+
initialState: w2,
|
|
91
95
|
reducers: {
|
|
92
96
|
setRuntimeConfig(t, e) {
|
|
93
97
|
t.apiVersion = e.payload.apiVersion, t.serverIsRunningOnProcessorHardware = e.payload.serverIsRunningOnProcessorHardware;
|
|
@@ -105,7 +109,7 @@ const u2 = {
|
|
|
105
109
|
t.roomData = e.payload;
|
|
106
110
|
},
|
|
107
111
|
setCurrentRoomKey(t, e) {
|
|
108
|
-
|
|
112
|
+
t.currentRoomKey = e.payload;
|
|
109
113
|
},
|
|
110
114
|
setUserCode(t, e) {
|
|
111
115
|
t.roomData.userCode = e.payload.userCode, t.roomData.qrUrl = e.payload.qrUrl;
|
|
@@ -114,7 +118,7 @@ const u2 = {
|
|
|
114
118
|
t.touchpanelKey = e.payload;
|
|
115
119
|
}
|
|
116
120
|
}
|
|
117
|
-
}),
|
|
121
|
+
}), F = f3.actions, p2 = f3.reducer, x2 = {
|
|
118
122
|
showReconnect: !1,
|
|
119
123
|
error: "",
|
|
120
124
|
modalVisibility: {
|
|
@@ -122,9 +126,9 @@ const u2 = {
|
|
|
122
126
|
showIncomingCallModal: !1
|
|
123
127
|
},
|
|
124
128
|
popoverVisibility: {}
|
|
125
|
-
},
|
|
129
|
+
}, w3 = d1({
|
|
126
130
|
name: "ui",
|
|
127
|
-
initialState:
|
|
131
|
+
initialState: x2,
|
|
128
132
|
reducers: {
|
|
129
133
|
clearAllModals(t) {
|
|
130
134
|
Object.entries(t.modalVisibility).forEach(([e]) => {
|
|
@@ -150,108 +154,107 @@ const u2 = {
|
|
|
150
154
|
},
|
|
151
155
|
setShowReconnect(t, e) {
|
|
152
156
|
t.showReconnect = e.payload;
|
|
157
|
+
},
|
|
158
|
+
setTheme(t, e) {
|
|
159
|
+
t.theme = e.payload;
|
|
153
160
|
}
|
|
154
161
|
}
|
|
155
|
-
}), q =
|
|
156
|
-
appConfig:
|
|
157
|
-
runtimeConfig:
|
|
158
|
-
rooms:
|
|
159
|
-
devices:
|
|
160
|
-
ui:
|
|
161
|
-
}),
|
|
162
|
-
reducer:
|
|
163
|
-
}),
|
|
164
|
-
function $(t) {
|
|
165
|
-
return p((e) => e.devices[t] ? e.devices[t] : void 0);
|
|
166
|
-
}
|
|
167
|
-
const Y8 = (t) => p(
|
|
162
|
+
}), q = w3.actions, m2 = w3.reducer, M2 = e2({
|
|
163
|
+
appConfig: v2,
|
|
164
|
+
runtimeConfig: p2,
|
|
165
|
+
rooms: f2,
|
|
166
|
+
devices: g2,
|
|
167
|
+
ui: m2
|
|
168
|
+
}), M = t2({
|
|
169
|
+
reducer: M2
|
|
170
|
+
}), G8 = (t) => w(
|
|
168
171
|
(e) => {
|
|
169
172
|
var s;
|
|
170
173
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.configuration : void 0;
|
|
171
174
|
}
|
|
172
|
-
),
|
|
175
|
+
), D1 = (t) => w(
|
|
173
176
|
(e) => e.rooms[t] ? e.rooms[t] : void 0
|
|
174
|
-
),
|
|
177
|
+
), q8 = (t) => w(
|
|
175
178
|
(e) => {
|
|
176
179
|
var s;
|
|
177
180
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.name : void 0;
|
|
178
181
|
}
|
|
179
|
-
),
|
|
182
|
+
), Z2 = (t, e) => w(
|
|
180
183
|
(s) => {
|
|
181
184
|
var r;
|
|
182
185
|
return s.rooms[t] ? (r = s.rooms[t]) == null ? void 0 : r.volumes[e] : void 0;
|
|
183
186
|
}
|
|
184
|
-
),
|
|
187
|
+
), j2 = (t) => w(
|
|
185
188
|
(e) => e.rooms[t] ? e.rooms[t] : void 0
|
|
186
|
-
),
|
|
189
|
+
), Y8 = (t) => w(
|
|
187
190
|
(e) => {
|
|
188
191
|
var s, r;
|
|
189
192
|
return e.rooms[t] ? (r = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : r.sourceList : void 0;
|
|
190
193
|
}
|
|
191
|
-
),
|
|
194
|
+
), z8 = (t) => w(
|
|
192
195
|
(e) => {
|
|
193
196
|
var s, r;
|
|
194
197
|
return e.rooms[t] ? (r = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : r.audioControlPointList : void 0;
|
|
195
198
|
}
|
|
196
|
-
),
|
|
199
|
+
), J8 = (t) => w(
|
|
197
200
|
(e) => {
|
|
198
201
|
var s, r;
|
|
199
202
|
return e.rooms[t] ? (r = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : r.destinations : void 0;
|
|
200
203
|
}
|
|
201
|
-
),
|
|
204
|
+
), X8 = (t) => w(
|
|
202
205
|
(e) => {
|
|
203
206
|
var s, r;
|
|
204
207
|
return e.rooms[t] ? (r = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : r.destinationList : void 0;
|
|
205
208
|
}
|
|
206
|
-
),
|
|
209
|
+
), Q8 = (t) => w(
|
|
207
210
|
(e) => {
|
|
208
211
|
var s, r;
|
|
209
212
|
return e.rooms[t] ? (r = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : r.environmentalDevices : void 0;
|
|
210
213
|
}
|
|
211
|
-
),
|
|
214
|
+
), N8 = (t) => w(
|
|
212
215
|
(e) => {
|
|
213
|
-
var s, r, c, u, i, g, f,
|
|
214
|
-
return (r = (s = e.rooms[t]) == null ? void 0 : s.configuration) != null && r.destinationList.programAudio ? (i = (u = (c = e.rooms[t]) == null ? void 0 : c.configuration) == null ? void 0 : u.destinationList.programAudio) == null ? void 0 : i.sinkKey : ((
|
|
216
|
+
var s, r, c, u, i, g, f, p;
|
|
217
|
+
return (r = (s = e.rooms[t]) == null ? void 0 : s.configuration) != null && r.destinationList.programAudio ? (i = (u = (c = e.rooms[t]) == null ? void 0 : c.configuration) == null ? void 0 : u.destinationList.programAudio) == null ? void 0 : i.sinkKey : ((p = (f = (g = e.rooms[t]) == null ? void 0 : g.configuration) == null ? void 0 : f.destinationList.defaultDisplay) == null ? void 0 : p.sinkKey) || "";
|
|
215
218
|
}
|
|
216
|
-
),
|
|
219
|
+
), e6 = (t) => w(
|
|
217
220
|
(e) => {
|
|
218
221
|
var s, r, c;
|
|
219
222
|
return e.rooms[t] ? (c = (r = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : r.destinationList.codecContent) == null ? void 0 : c.sinkKey : void 0;
|
|
220
223
|
}
|
|
221
|
-
),
|
|
224
|
+
), t6 = (t) => w(
|
|
222
225
|
(e) => {
|
|
223
226
|
var s;
|
|
224
227
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.isInCall : void 0;
|
|
225
228
|
}
|
|
226
|
-
),
|
|
229
|
+
), o6 = (t) => w(
|
|
227
230
|
(e) => {
|
|
228
231
|
var s;
|
|
229
232
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.isWarmingUp : void 0;
|
|
230
233
|
}
|
|
231
|
-
),
|
|
234
|
+
), s6 = (t) => w(
|
|
232
235
|
(e) => {
|
|
233
236
|
var s;
|
|
234
237
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.isCoolingDown : void 0;
|
|
235
238
|
}
|
|
236
|
-
),
|
|
239
|
+
), n6 = (t) => w(
|
|
237
240
|
(e) => {
|
|
238
241
|
var s;
|
|
239
242
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.isOn : void 0;
|
|
240
243
|
}
|
|
241
|
-
),
|
|
244
|
+
), r6 = (t) => w(
|
|
242
245
|
(e) => {
|
|
243
246
|
var s;
|
|
244
247
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.advancedSharingActive : void 0;
|
|
245
248
|
}
|
|
246
|
-
),
|
|
249
|
+
), c6 = (t) => w(
|
|
247
250
|
(e) => {
|
|
248
251
|
var s;
|
|
249
252
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.share : void 0;
|
|
250
253
|
}
|
|
251
|
-
),
|
|
254
|
+
), l6 = (t) => o2(
|
|
252
255
|
[
|
|
253
256
|
(e, s) => s,
|
|
254
|
-
|
|
257
|
+
u2,
|
|
255
258
|
(e) => {
|
|
256
259
|
var s, r;
|
|
257
260
|
return (r = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : r.destinations;
|
|
@@ -263,36 +266,34 @@ const Y8 = (t) => p(
|
|
|
263
266
|
const c = Object.entries(r).filter(([i]) => i !== "programAudio" && i !== "codecContent").map(([, i]) => i);
|
|
264
267
|
return Object.values(s).filter((i) => Object.values(c).includes(i.key));
|
|
265
268
|
}
|
|
266
|
-
)(
|
|
269
|
+
)(M.getState(), t), i6 = (t) => w(
|
|
267
270
|
(e) => {
|
|
268
271
|
var s, r;
|
|
269
272
|
return e.rooms[t] ? (r = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : r.zoomRoomControllerKey : void 0;
|
|
270
273
|
}
|
|
271
|
-
),
|
|
274
|
+
), C2 = () => w((t) => t.runtimeConfig.websocket.isConnected), S2 = () => w((t) => t.runtimeConfig.currentRoomKey), b2 = () => w((t) => t.runtimeConfig.roomData.clientId), I2 = () => w((t) => t.runtimeConfig.roomData.systemUuid), y2 = () => w((t) => t.runtimeConfig.roomData.userCode), R2 = () => w((t) => t.runtimeConfig.serverIsRunningOnProcessorHardware), a6 = () => w((t) => {
|
|
272
275
|
var e;
|
|
273
276
|
return (e = t.runtimeConfig.roomData.config) == null ? void 0 : e.runtimeInfo;
|
|
274
|
-
}),
|
|
277
|
+
}), u6 = () => w((t) => t.runtimeConfig.touchpanelKey), d6 = () => w((t) => t.runtimeConfig.touchpanelKey !== ""), h6 = () => w((t) => t.ui.modalVisibility.showShutdownModal), v6 = () => w((t) => t.ui.modalVisibility.showIncomingCallModal), g6 = (t) => w((e) => e.ui.modalVisibility[t]), f6 = (t) => w((e) => {
|
|
275
278
|
const s = e.ui.popoverVisibility[t];
|
|
276
279
|
if (s)
|
|
277
280
|
return Object.keys(s).find((r) => s[r]);
|
|
278
|
-
}),
|
|
281
|
+
}), w6 = (t, e) => w((s) => {
|
|
279
282
|
var r;
|
|
280
283
|
return (r = s.ui.popoverVisibility[t]) == null ? void 0 : r[e];
|
|
281
|
-
}),
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
function P2() {
|
|
285
|
-
const t = $2();
|
|
284
|
+
}), E2 = () => w((t) => t.ui.error), _2 = () => w((t) => t.ui.showReconnect), p6 = () => w((t) => t.ui.theme), T1 = z3.create();
|
|
285
|
+
function L2() {
|
|
286
|
+
const t = i2();
|
|
286
287
|
return async () => {
|
|
287
288
|
try {
|
|
288
289
|
const e = location.pathname.split("/").filter((c) => c.length > 0);
|
|
289
290
|
e.length >= 5 ? e.length = 5 : e.length = 2;
|
|
290
|
-
const s = `/${e.join("/")}`, r = await
|
|
291
|
+
const s = `/${e.join("/")}`, r = await T1.get("/_local-config/_config.local.json", { baseURL: s });
|
|
291
292
|
if (r.status == 200 && r.data) {
|
|
292
293
|
const c = r.data.apiPath;
|
|
293
|
-
t(
|
|
294
|
-
const u = await
|
|
295
|
-
u.status == 200 && u.data && t(
|
|
294
|
+
t(h2.setAppConfig(r.data));
|
|
295
|
+
const u = await T1.get(`${c}/version`);
|
|
296
|
+
u.status == 200 && u.data && t(F.setRuntimeConfig(u.data));
|
|
296
297
|
}
|
|
297
298
|
} catch (e) {
|
|
298
299
|
console.error("Error getting config", e);
|
|
@@ -300,7 +301,7 @@ function P2() {
|
|
|
300
301
|
return !0;
|
|
301
302
|
};
|
|
302
303
|
}
|
|
303
|
-
var
|
|
304
|
+
var $1 = { exports: {} }, l1 = {};
|
|
304
305
|
/**
|
|
305
306
|
* @license React
|
|
306
307
|
* react-jsx-runtime.development.js
|
|
@@ -310,17 +311,17 @@ var T1 = { exports: {} }, l1 = {};
|
|
|
310
311
|
* This source code is licensed under the MIT license found in the
|
|
311
312
|
* LICENSE file in the root directory of this source tree.
|
|
312
313
|
*/
|
|
313
|
-
var
|
|
314
|
+
var c3;
|
|
314
315
|
function T2() {
|
|
315
|
-
return
|
|
316
|
-
var t =
|
|
316
|
+
return c3 || (c3 = 1, process.env.NODE_ENV !== "production" && function() {
|
|
317
|
+
var t = u3, e = Symbol.for("react.element"), s = Symbol.for("react.portal"), r = Symbol.for("react.fragment"), c = Symbol.for("react.strict_mode"), u = Symbol.for("react.profiler"), i = Symbol.for("react.provider"), g = Symbol.for("react.context"), f = Symbol.for("react.forward_ref"), p = Symbol.for("react.suspense"), d = Symbol.for("react.suspense_list"), b = Symbol.for("react.memo"), P = Symbol.for("react.lazy"), W = Symbol.for("react.offscreen"), O = Symbol.iterator, z = "@@iterator";
|
|
317
318
|
function o1(n) {
|
|
318
319
|
if (n === null || typeof n != "object")
|
|
319
320
|
return null;
|
|
320
321
|
var l = O && n[O] || n[z];
|
|
321
322
|
return typeof l == "function" ? l : null;
|
|
322
323
|
}
|
|
323
|
-
var
|
|
324
|
+
var $ = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
324
325
|
function L(n) {
|
|
325
326
|
{
|
|
326
327
|
for (var l = arguments.length, a = new Array(l > 1 ? l - 1 : 0), h = 1; h < l; h++)
|
|
@@ -330,18 +331,18 @@ function T2() {
|
|
|
330
331
|
}
|
|
331
332
|
function x1(n, l, a) {
|
|
332
333
|
{
|
|
333
|
-
var h =
|
|
334
|
-
|
|
335
|
-
var S = a.map(function(
|
|
336
|
-
return String(
|
|
334
|
+
var h = $.ReactDebugCurrentFrame, C = h.getStackAddendum();
|
|
335
|
+
C !== "" && (l += "%s", a = a.concat([C]));
|
|
336
|
+
var S = a.map(function(m) {
|
|
337
|
+
return String(m);
|
|
337
338
|
});
|
|
338
339
|
S.unshift("Warning: " + l), Function.prototype.apply.call(console[n], console, S);
|
|
339
340
|
}
|
|
340
341
|
}
|
|
341
|
-
var
|
|
342
|
+
var m1 = !1, y = !1, j = !1, h1 = !1, M1 = !1, K;
|
|
342
343
|
K = Symbol.for("react.module.reference");
|
|
343
344
|
function A(n) {
|
|
344
|
-
return !!(typeof n == "string" || typeof n == "function" || n === r || n === u ||
|
|
345
|
+
return !!(typeof n == "string" || typeof n == "function" || n === r || n === u || M1 || n === c || n === p || n === d || h1 || n === W || m1 || y || j || typeof n == "object" && n !== null && (n.$$typeof === P || n.$$typeof === b || n.$$typeof === i || n.$$typeof === g || n.$$typeof === f || // This needs to include all possible module reference object
|
|
345
346
|
// types supported by any Flight configuration anywhere since
|
|
346
347
|
// we don't know which Flight build this will end up being used
|
|
347
348
|
// with.
|
|
@@ -351,8 +352,8 @@ function T2() {
|
|
|
351
352
|
var h = n.displayName;
|
|
352
353
|
if (h)
|
|
353
354
|
return h;
|
|
354
|
-
var
|
|
355
|
-
return
|
|
355
|
+
var C = l.displayName || l.name || "";
|
|
356
|
+
return C !== "" ? a + "(" + C + ")" : a;
|
|
356
357
|
}
|
|
357
358
|
function J(n) {
|
|
358
359
|
return n.displayName || "Context";
|
|
@@ -373,7 +374,7 @@ function T2() {
|
|
|
373
374
|
return "Profiler";
|
|
374
375
|
case c:
|
|
375
376
|
return "StrictMode";
|
|
376
|
-
case
|
|
377
|
+
case p:
|
|
377
378
|
return "Suspense";
|
|
378
379
|
case d:
|
|
379
380
|
return "SuspenseList";
|
|
@@ -391,10 +392,10 @@ function T2() {
|
|
|
391
392
|
case b:
|
|
392
393
|
var h = n.displayName || null;
|
|
393
394
|
return h !== null ? h : k(n.type) || "Memo";
|
|
394
|
-
case
|
|
395
|
-
var
|
|
395
|
+
case P: {
|
|
396
|
+
var C = n, S = C._payload, m = C._init;
|
|
396
397
|
try {
|
|
397
|
-
return k(
|
|
398
|
+
return k(m(S));
|
|
398
399
|
} catch {
|
|
399
400
|
return null;
|
|
400
401
|
}
|
|
@@ -402,18 +403,18 @@ function T2() {
|
|
|
402
403
|
}
|
|
403
404
|
return null;
|
|
404
405
|
}
|
|
405
|
-
var G = Object.assign, s1 = 0, B1, O1, V1, k1, U1,
|
|
406
|
-
function
|
|
406
|
+
var G = Object.assign, s1 = 0, A1, B1, O1, V1, k1, U1, W1;
|
|
407
|
+
function F1() {
|
|
407
408
|
}
|
|
408
|
-
|
|
409
|
-
function
|
|
409
|
+
F1.__reactDisabledLog = !0;
|
|
410
|
+
function M3() {
|
|
410
411
|
{
|
|
411
412
|
if (s1 === 0) {
|
|
412
|
-
|
|
413
|
+
A1 = console.log, B1 = console.info, O1 = console.warn, V1 = console.error, k1 = console.group, U1 = console.groupCollapsed, W1 = console.groupEnd;
|
|
413
414
|
var n = {
|
|
414
415
|
configurable: !0,
|
|
415
416
|
enumerable: !0,
|
|
416
|
-
value:
|
|
417
|
+
value: F1,
|
|
417
418
|
writable: !0
|
|
418
419
|
};
|
|
419
420
|
Object.defineProperties(console, {
|
|
@@ -429,7 +430,7 @@ function T2() {
|
|
|
429
430
|
s1++;
|
|
430
431
|
}
|
|
431
432
|
}
|
|
432
|
-
function
|
|
433
|
+
function Z3() {
|
|
433
434
|
{
|
|
434
435
|
if (s1--, s1 === 0) {
|
|
435
436
|
var n = {
|
|
@@ -439,22 +440,22 @@ function T2() {
|
|
|
439
440
|
};
|
|
440
441
|
Object.defineProperties(console, {
|
|
441
442
|
log: G({}, n, {
|
|
442
|
-
value:
|
|
443
|
+
value: A1
|
|
443
444
|
}),
|
|
444
445
|
info: G({}, n, {
|
|
445
|
-
value:
|
|
446
|
+
value: B1
|
|
446
447
|
}),
|
|
447
448
|
warn: G({}, n, {
|
|
448
|
-
value:
|
|
449
|
+
value: O1
|
|
449
450
|
}),
|
|
450
451
|
error: G({}, n, {
|
|
451
|
-
value:
|
|
452
|
+
value: V1
|
|
452
453
|
}),
|
|
453
454
|
group: G({}, n, {
|
|
454
|
-
value:
|
|
455
|
+
value: k1
|
|
455
456
|
}),
|
|
456
457
|
groupCollapsed: G({}, n, {
|
|
457
|
-
value:
|
|
458
|
+
value: U1
|
|
458
459
|
}),
|
|
459
460
|
groupEnd: G({}, n, {
|
|
460
461
|
value: W1
|
|
@@ -464,14 +465,14 @@ function T2() {
|
|
|
464
465
|
s1 < 0 && L("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
|
465
466
|
}
|
|
466
467
|
}
|
|
467
|
-
var Z1 =
|
|
468
|
+
var Z1 = $.ReactCurrentDispatcher, j1;
|
|
468
469
|
function v1(n, l, a) {
|
|
469
470
|
{
|
|
470
471
|
if (j1 === void 0)
|
|
471
472
|
try {
|
|
472
473
|
throw Error();
|
|
473
|
-
} catch (
|
|
474
|
-
var h =
|
|
474
|
+
} catch (C) {
|
|
475
|
+
var h = C.stack.trim().match(/\n( *(at )?)/);
|
|
475
476
|
j1 = h && h[1] || "";
|
|
476
477
|
}
|
|
477
478
|
return `
|
|
@@ -480,10 +481,10 @@ function T2() {
|
|
|
480
481
|
}
|
|
481
482
|
var C1 = !1, g1;
|
|
482
483
|
{
|
|
483
|
-
var
|
|
484
|
-
g1 = new
|
|
484
|
+
var j3 = typeof WeakMap == "function" ? WeakMap : Map;
|
|
485
|
+
g1 = new j3();
|
|
485
486
|
}
|
|
486
|
-
function
|
|
487
|
+
function H1(n, l) {
|
|
487
488
|
if (!n || C1)
|
|
488
489
|
return "";
|
|
489
490
|
{
|
|
@@ -493,33 +494,33 @@ function T2() {
|
|
|
493
494
|
}
|
|
494
495
|
var h;
|
|
495
496
|
C1 = !0;
|
|
496
|
-
var
|
|
497
|
+
var C = Error.prepareStackTrace;
|
|
497
498
|
Error.prepareStackTrace = void 0;
|
|
498
499
|
var S;
|
|
499
|
-
S = Z1.current, Z1.current = null,
|
|
500
|
+
S = Z1.current, Z1.current = null, M3();
|
|
500
501
|
try {
|
|
501
502
|
if (l) {
|
|
502
|
-
var
|
|
503
|
+
var m = function() {
|
|
503
504
|
throw Error();
|
|
504
505
|
};
|
|
505
|
-
if (Object.defineProperty(
|
|
506
|
+
if (Object.defineProperty(m.prototype, "props", {
|
|
506
507
|
set: function() {
|
|
507
508
|
throw Error();
|
|
508
509
|
}
|
|
509
510
|
}), typeof Reflect == "object" && Reflect.construct) {
|
|
510
511
|
try {
|
|
511
|
-
Reflect.construct(
|
|
512
|
+
Reflect.construct(m, []);
|
|
512
513
|
} catch (B) {
|
|
513
514
|
h = B;
|
|
514
515
|
}
|
|
515
|
-
Reflect.construct(n, [],
|
|
516
|
+
Reflect.construct(n, [], m);
|
|
516
517
|
} else {
|
|
517
518
|
try {
|
|
518
|
-
|
|
519
|
+
m.call();
|
|
519
520
|
} catch (B) {
|
|
520
521
|
h = B;
|
|
521
522
|
}
|
|
522
|
-
n.call(
|
|
523
|
+
n.call(m.prototype);
|
|
523
524
|
}
|
|
524
525
|
} else {
|
|
525
526
|
try {
|
|
@@ -549,15 +550,15 @@ function T2() {
|
|
|
549
550
|
}
|
|
550
551
|
}
|
|
551
552
|
} finally {
|
|
552
|
-
C1 = !1, Z1.current = S,
|
|
553
|
+
C1 = !1, Z1.current = S, Z3(), Error.prepareStackTrace = C;
|
|
553
554
|
}
|
|
554
555
|
var Q = n ? n.displayName || n.name : "", Y = Q ? v1(Q) : "";
|
|
555
556
|
return typeof n == "function" && g1.set(n, Y), Y;
|
|
556
557
|
}
|
|
557
|
-
function
|
|
558
|
-
return
|
|
558
|
+
function C3(n, l, a) {
|
|
559
|
+
return H1(n, !1);
|
|
559
560
|
}
|
|
560
|
-
function
|
|
561
|
+
function S3(n) {
|
|
561
562
|
var l = n.prototype;
|
|
562
563
|
return !!(l && l.isReactComponent);
|
|
563
564
|
}
|
|
@@ -565,11 +566,11 @@ function T2() {
|
|
|
565
566
|
if (n == null)
|
|
566
567
|
return "";
|
|
567
568
|
if (typeof n == "function")
|
|
568
|
-
return
|
|
569
|
+
return H1(n, S3(n));
|
|
569
570
|
if (typeof n == "string")
|
|
570
571
|
return v1(n);
|
|
571
572
|
switch (n) {
|
|
572
|
-
case
|
|
573
|
+
case p:
|
|
573
574
|
return v1("Suspense");
|
|
574
575
|
case d:
|
|
575
576
|
return v1("SuspenseList");
|
|
@@ -577,78 +578,78 @@ function T2() {
|
|
|
577
578
|
if (typeof n == "object")
|
|
578
579
|
switch (n.$$typeof) {
|
|
579
580
|
case f:
|
|
580
|
-
return
|
|
581
|
+
return C3(n.render);
|
|
581
582
|
case b:
|
|
582
583
|
return f1(n.type, l, a);
|
|
583
|
-
case
|
|
584
|
-
var h = n,
|
|
584
|
+
case P: {
|
|
585
|
+
var h = n, C = h._payload, S = h._init;
|
|
585
586
|
try {
|
|
586
|
-
return f1(S(
|
|
587
|
+
return f1(S(C), l, a);
|
|
587
588
|
} catch {
|
|
588
589
|
}
|
|
589
590
|
}
|
|
590
591
|
}
|
|
591
592
|
return "";
|
|
592
593
|
}
|
|
593
|
-
var n1 = Object.prototype.hasOwnProperty,
|
|
594
|
+
var n1 = Object.prototype.hasOwnProperty, K1 = {}, G1 = $.ReactDebugCurrentFrame;
|
|
594
595
|
function w1(n) {
|
|
595
596
|
if (n) {
|
|
596
597
|
var l = n._owner, a = f1(n.type, n._source, l ? l.type : null);
|
|
597
|
-
|
|
598
|
+
G1.setExtraStackFrame(a);
|
|
598
599
|
} else
|
|
599
|
-
|
|
600
|
+
G1.setExtraStackFrame(null);
|
|
600
601
|
}
|
|
601
|
-
function
|
|
602
|
+
function b3(n, l, a, h, C) {
|
|
602
603
|
{
|
|
603
604
|
var S = Function.call.bind(n1);
|
|
604
|
-
for (var
|
|
605
|
-
if (S(n,
|
|
605
|
+
for (var m in n)
|
|
606
|
+
if (S(n, m)) {
|
|
606
607
|
var x = void 0;
|
|
607
608
|
try {
|
|
608
|
-
if (typeof n[
|
|
609
|
-
var D = Error((h || "React class") + ": " + a + " type `" +
|
|
609
|
+
if (typeof n[m] != "function") {
|
|
610
|
+
var D = Error((h || "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`.");
|
|
610
611
|
throw D.name = "Invariant Violation", D;
|
|
611
612
|
}
|
|
612
|
-
x = n[
|
|
613
|
+
x = n[m](l, m, h, a, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
613
614
|
} catch (E) {
|
|
614
615
|
x = E;
|
|
615
616
|
}
|
|
616
|
-
x && !(x instanceof Error) && (w1(
|
|
617
|
+
x && !(x instanceof Error) && (w1(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).", h || "React class", a, m, typeof x), w1(null)), x instanceof Error && !(x.message in K1) && (K1[x.message] = !0, w1(C), L("Failed %s type: %s", a, x.message), w1(null));
|
|
617
618
|
}
|
|
618
619
|
}
|
|
619
620
|
}
|
|
620
|
-
var
|
|
621
|
+
var I3 = Array.isArray;
|
|
621
622
|
function S1(n) {
|
|
622
|
-
return
|
|
623
|
+
return I3(n);
|
|
623
624
|
}
|
|
624
|
-
function
|
|
625
|
+
function y3(n) {
|
|
625
626
|
{
|
|
626
627
|
var l = typeof Symbol == "function" && Symbol.toStringTag, a = l && n[Symbol.toStringTag] || n.constructor.name || "Object";
|
|
627
628
|
return a;
|
|
628
629
|
}
|
|
629
630
|
}
|
|
630
|
-
function
|
|
631
|
+
function R3(n) {
|
|
631
632
|
try {
|
|
632
|
-
return
|
|
633
|
+
return q1(n), !1;
|
|
633
634
|
} catch {
|
|
634
635
|
return !0;
|
|
635
636
|
}
|
|
636
637
|
}
|
|
637
|
-
function
|
|
638
|
+
function q1(n) {
|
|
638
639
|
return "" + n;
|
|
639
640
|
}
|
|
640
|
-
function
|
|
641
|
-
if (
|
|
642
|
-
return L("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.",
|
|
641
|
+
function Y1(n) {
|
|
642
|
+
if (R3(n))
|
|
643
|
+
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);
|
|
643
644
|
}
|
|
644
|
-
var r1 =
|
|
645
|
+
var r1 = $.ReactCurrentOwner, E3 = {
|
|
645
646
|
key: !0,
|
|
646
647
|
ref: !0,
|
|
647
648
|
__self: !0,
|
|
648
649
|
__source: !0
|
|
649
|
-
},
|
|
650
|
+
}, z1, J1, b1;
|
|
650
651
|
b1 = {};
|
|
651
|
-
function
|
|
652
|
+
function _3(n) {
|
|
652
653
|
if (n1.call(n, "ref")) {
|
|
653
654
|
var l = Object.getOwnPropertyDescriptor(n, "ref").get;
|
|
654
655
|
if (l && l.isReactWarning)
|
|
@@ -656,7 +657,7 @@ function T2() {
|
|
|
656
657
|
}
|
|
657
658
|
return n.ref !== void 0;
|
|
658
659
|
}
|
|
659
|
-
function
|
|
660
|
+
function L3(n) {
|
|
660
661
|
if (n1.call(n, "key")) {
|
|
661
662
|
var l = Object.getOwnPropertyDescriptor(n, "key").get;
|
|
662
663
|
if (l && l.isReactWarning)
|
|
@@ -664,16 +665,16 @@ function T2() {
|
|
|
664
665
|
}
|
|
665
666
|
return n.key !== void 0;
|
|
666
667
|
}
|
|
667
|
-
function
|
|
668
|
+
function T3(n, l) {
|
|
668
669
|
if (typeof n.ref == "string" && r1.current && l && r1.current.stateNode !== l) {
|
|
669
670
|
var a = k(r1.current.type);
|
|
670
671
|
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', k(r1.current.type), n.ref), b1[a] = !0);
|
|
671
672
|
}
|
|
672
673
|
}
|
|
673
|
-
function
|
|
674
|
+
function $3(n, l) {
|
|
674
675
|
{
|
|
675
676
|
var a = function() {
|
|
676
|
-
|
|
677
|
+
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));
|
|
677
678
|
};
|
|
678
679
|
a.isReactWarning = !0, Object.defineProperty(n, "key", {
|
|
679
680
|
get: a,
|
|
@@ -681,10 +682,10 @@ function T2() {
|
|
|
681
682
|
});
|
|
682
683
|
}
|
|
683
684
|
}
|
|
684
|
-
function
|
|
685
|
+
function P3(n, l) {
|
|
685
686
|
{
|
|
686
687
|
var a = function() {
|
|
687
|
-
|
|
688
|
+
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));
|
|
688
689
|
};
|
|
689
690
|
a.isReactWarning = !0, Object.defineProperty(n, "ref", {
|
|
690
691
|
get: a,
|
|
@@ -692,7 +693,7 @@ function T2() {
|
|
|
692
693
|
});
|
|
693
694
|
}
|
|
694
695
|
}
|
|
695
|
-
var
|
|
696
|
+
var D3 = function(n, l, a, h, C, S, m) {
|
|
696
697
|
var x = {
|
|
697
698
|
// This tag allows us to uniquely identify this as a React Element
|
|
698
699
|
$$typeof: e,
|
|
@@ -700,7 +701,7 @@ function T2() {
|
|
|
700
701
|
type: n,
|
|
701
702
|
key: l,
|
|
702
703
|
ref: a,
|
|
703
|
-
props:
|
|
704
|
+
props: m,
|
|
704
705
|
// Record the component responsible for creating this element.
|
|
705
706
|
_owner: S
|
|
706
707
|
};
|
|
@@ -718,41 +719,41 @@ function T2() {
|
|
|
718
719
|
configurable: !1,
|
|
719
720
|
enumerable: !1,
|
|
720
721
|
writable: !1,
|
|
721
|
-
value:
|
|
722
|
+
value: C
|
|
722
723
|
}), Object.freeze && (Object.freeze(x.props), Object.freeze(x)), x;
|
|
723
724
|
};
|
|
724
|
-
function
|
|
725
|
+
function A3(n, l, a, h, C) {
|
|
725
726
|
{
|
|
726
|
-
var S,
|
|
727
|
-
a !== void 0 && (
|
|
727
|
+
var S, m = {}, x = null, D = null;
|
|
728
|
+
a !== void 0 && (Y1(a), x = "" + a), L3(l) && (Y1(l.key), x = "" + l.key), _3(l) && (D = l.ref, T3(l, C));
|
|
728
729
|
for (S in l)
|
|
729
|
-
n1.call(l, S) &&
|
|
730
|
+
n1.call(l, S) && !E3.hasOwnProperty(S) && (m[S] = l[S]);
|
|
730
731
|
if (n && n.defaultProps) {
|
|
731
732
|
var E = n.defaultProps;
|
|
732
733
|
for (S in E)
|
|
733
|
-
|
|
734
|
+
m[S] === void 0 && (m[S] = E[S]);
|
|
734
735
|
}
|
|
735
736
|
if (x || D) {
|
|
736
737
|
var _ = typeof n == "function" ? n.displayName || n.name || "Unknown" : n;
|
|
737
|
-
x &&
|
|
738
|
+
x && $3(m, _), D && P3(m, _);
|
|
738
739
|
}
|
|
739
|
-
return
|
|
740
|
+
return D3(n, x, D, C, h, r1.current, m);
|
|
740
741
|
}
|
|
741
742
|
}
|
|
742
|
-
var I1 =
|
|
743
|
+
var I1 = $.ReactCurrentOwner, X1 = $.ReactDebugCurrentFrame;
|
|
743
744
|
function X(n) {
|
|
744
745
|
if (n) {
|
|
745
746
|
var l = n._owner, a = f1(n.type, n._source, l ? l.type : null);
|
|
746
|
-
|
|
747
|
+
X1.setExtraStackFrame(a);
|
|
747
748
|
} else
|
|
748
|
-
|
|
749
|
+
X1.setExtraStackFrame(null);
|
|
749
750
|
}
|
|
750
751
|
var y1;
|
|
751
752
|
y1 = !1;
|
|
752
753
|
function R1(n) {
|
|
753
754
|
return typeof n == "object" && n !== null && n.$$typeof === e;
|
|
754
755
|
}
|
|
755
|
-
function
|
|
756
|
+
function Q1() {
|
|
756
757
|
{
|
|
757
758
|
if (I1.current) {
|
|
758
759
|
var n = k(I1.current.type);
|
|
@@ -764,7 +765,7 @@ Check the render method of \`` + n + "`.";
|
|
|
764
765
|
return "";
|
|
765
766
|
}
|
|
766
767
|
}
|
|
767
|
-
function
|
|
768
|
+
function B3(n) {
|
|
768
769
|
{
|
|
769
770
|
if (n !== void 0) {
|
|
770
771
|
var l = n.fileName.replace(/^.*[\\\/]/, ""), a = n.lineNumber;
|
|
@@ -775,10 +776,10 @@ Check your code at ` + l + ":" + a + ".";
|
|
|
775
776
|
return "";
|
|
776
777
|
}
|
|
777
778
|
}
|
|
778
|
-
var
|
|
779
|
-
function
|
|
779
|
+
var N1 = {};
|
|
780
|
+
function O3(n) {
|
|
780
781
|
{
|
|
781
|
-
var l =
|
|
782
|
+
var l = Q1();
|
|
782
783
|
if (!l) {
|
|
783
784
|
var a = typeof n == "string" ? n : n.displayName || n.name;
|
|
784
785
|
a && (l = `
|
|
@@ -788,39 +789,39 @@ Check the top-level render call using <` + a + ">.");
|
|
|
788
789
|
return l;
|
|
789
790
|
}
|
|
790
791
|
}
|
|
791
|
-
function
|
|
792
|
+
function e3(n, l) {
|
|
792
793
|
{
|
|
793
794
|
if (!n._store || n._store.validated || n.key != null)
|
|
794
795
|
return;
|
|
795
796
|
n._store.validated = !0;
|
|
796
|
-
var a =
|
|
797
|
-
if (
|
|
797
|
+
var a = O3(l);
|
|
798
|
+
if (N1[a])
|
|
798
799
|
return;
|
|
799
|
-
|
|
800
|
+
N1[a] = !0;
|
|
800
801
|
var h = "";
|
|
801
802
|
n && n._owner && n._owner !== I1.current && (h = " It was passed a child from " + k(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, h), X(null);
|
|
802
803
|
}
|
|
803
804
|
}
|
|
804
|
-
function
|
|
805
|
+
function t3(n, l) {
|
|
805
806
|
{
|
|
806
807
|
if (typeof n != "object")
|
|
807
808
|
return;
|
|
808
809
|
if (S1(n))
|
|
809
810
|
for (var a = 0; a < n.length; a++) {
|
|
810
811
|
var h = n[a];
|
|
811
|
-
R1(h) &&
|
|
812
|
+
R1(h) && e3(h, l);
|
|
812
813
|
}
|
|
813
814
|
else if (R1(n))
|
|
814
815
|
n._store && (n._store.validated = !0);
|
|
815
816
|
else if (n) {
|
|
816
|
-
var
|
|
817
|
-
if (typeof
|
|
818
|
-
for (var S =
|
|
819
|
-
R1(
|
|
817
|
+
var C = o1(n);
|
|
818
|
+
if (typeof C == "function" && C !== n.entries)
|
|
819
|
+
for (var S = C.call(n), m; !(m = S.next()).done; )
|
|
820
|
+
R1(m.value) && e3(m.value, l);
|
|
820
821
|
}
|
|
821
822
|
}
|
|
822
823
|
}
|
|
823
|
-
function
|
|
824
|
+
function V3(n) {
|
|
824
825
|
{
|
|
825
826
|
var l = n.type;
|
|
826
827
|
if (l == null || typeof l == "string")
|
|
@@ -836,16 +837,16 @@ Check the top-level render call using <` + a + ">.");
|
|
|
836
837
|
return;
|
|
837
838
|
if (a) {
|
|
838
839
|
var h = k(l);
|
|
839
|
-
|
|
840
|
+
b3(a, n.props, "prop", h, n);
|
|
840
841
|
} else if (l.PropTypes !== void 0 && !y1) {
|
|
841
842
|
y1 = !0;
|
|
842
|
-
var
|
|
843
|
-
L("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?",
|
|
843
|
+
var C = k(l);
|
|
844
|
+
L("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", C || "Unknown");
|
|
844
845
|
}
|
|
845
846
|
typeof l.getDefaultProps == "function" && !l.getDefaultProps.isReactClassApproved && L("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
|
846
847
|
}
|
|
847
848
|
}
|
|
848
|
-
function
|
|
849
|
+
function k3(n) {
|
|
849
850
|
{
|
|
850
851
|
for (var l = Object.keys(n.props), a = 0; a < l.length; a++) {
|
|
851
852
|
var h = l[a];
|
|
@@ -857,59 +858,59 @@ Check the top-level render call using <` + a + ">.");
|
|
|
857
858
|
n.ref !== null && (X(n), L("Invalid attribute `ref` supplied to `React.Fragment`."), X(null));
|
|
858
859
|
}
|
|
859
860
|
}
|
|
860
|
-
var
|
|
861
|
-
function
|
|
861
|
+
var o3 = {};
|
|
862
|
+
function s3(n, l, a, h, C, S) {
|
|
862
863
|
{
|
|
863
|
-
var
|
|
864
|
-
if (!
|
|
864
|
+
var m = A(n);
|
|
865
|
+
if (!m) {
|
|
865
866
|
var x = "";
|
|
866
867
|
(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.");
|
|
867
|
-
var D =
|
|
868
|
-
D ? x += D : x +=
|
|
868
|
+
var D = B3(C);
|
|
869
|
+
D ? x += D : x += Q1();
|
|
869
870
|
var E;
|
|
870
871
|
n === null ? E = "null" : S1(n) ? E = "array" : n !== void 0 && n.$$typeof === e ? (E = "<" + (k(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);
|
|
871
872
|
}
|
|
872
|
-
var _ =
|
|
873
|
+
var _ = A3(n, l, a, C, S);
|
|
873
874
|
if (_ == null)
|
|
874
875
|
return _;
|
|
875
|
-
if (
|
|
876
|
+
if (m) {
|
|
876
877
|
var U = l.children;
|
|
877
878
|
if (U !== void 0)
|
|
878
879
|
if (h)
|
|
879
880
|
if (S1(U)) {
|
|
880
881
|
for (var Q = 0; Q < U.length; Q++)
|
|
881
|
-
|
|
882
|
+
t3(U[Q], n);
|
|
882
883
|
Object.freeze && Object.freeze(U);
|
|
883
884
|
} else
|
|
884
885
|
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.");
|
|
885
886
|
else
|
|
886
|
-
|
|
887
|
+
t3(U, n);
|
|
887
888
|
}
|
|
888
889
|
if (n1.call(l, "key")) {
|
|
889
|
-
var Y = k(n), B = Object.keys(l).filter(function(
|
|
890
|
-
return
|
|
890
|
+
var Y = k(n), B = Object.keys(l).filter(function(G3) {
|
|
891
|
+
return G3 !== "key";
|
|
891
892
|
}), E1 = B.length > 0 ? "{key: someKey, " + B.join(": ..., ") + ": ...}" : "{key: someKey}";
|
|
892
|
-
if (!
|
|
893
|
-
var
|
|
893
|
+
if (!o3[Y + E1]) {
|
|
894
|
+
var K3 = B.length > 0 ? "{" + B.join(": ..., ") + ": ...}" : "{}";
|
|
894
895
|
L(`A props object containing a "key" prop is being spread into JSX:
|
|
895
896
|
let props = %s;
|
|
896
897
|
<%s {...props} />
|
|
897
898
|
React keys must be passed directly to JSX without using spread:
|
|
898
899
|
let props = %s;
|
|
899
|
-
<%s key={someKey} {...props} />`, E1, Y,
|
|
900
|
+
<%s key={someKey} {...props} />`, E1, Y, K3, Y), o3[Y + E1] = !0;
|
|
900
901
|
}
|
|
901
902
|
}
|
|
902
|
-
return n === r ?
|
|
903
|
+
return n === r ? k3(_) : V3(_), _;
|
|
903
904
|
}
|
|
904
905
|
}
|
|
905
|
-
function
|
|
906
|
-
return
|
|
906
|
+
function U3(n, l, a) {
|
|
907
|
+
return s3(n, l, a, !0);
|
|
907
908
|
}
|
|
908
|
-
function
|
|
909
|
-
return
|
|
909
|
+
function W3(n, l, a) {
|
|
910
|
+
return s3(n, l, a, !1);
|
|
910
911
|
}
|
|
911
|
-
var
|
|
912
|
-
l1.Fragment = r, l1.jsx =
|
|
912
|
+
var F3 = W3, H3 = U3;
|
|
913
|
+
l1.Fragment = r, l1.jsx = F3, l1.jsxs = H3;
|
|
913
914
|
}()), l1;
|
|
914
915
|
}
|
|
915
916
|
var i1 = {};
|
|
@@ -922,37 +923,37 @@ var i1 = {};
|
|
|
922
923
|
* This source code is licensed under the MIT license found in the
|
|
923
924
|
* LICENSE file in the root directory of this source tree.
|
|
924
925
|
*/
|
|
925
|
-
var
|
|
926
|
-
function
|
|
927
|
-
if (
|
|
926
|
+
var l3;
|
|
927
|
+
function $2() {
|
|
928
|
+
if (l3)
|
|
928
929
|
return i1;
|
|
929
|
-
|
|
930
|
-
var t =
|
|
931
|
-
function i(g, f,
|
|
932
|
-
var d, b = {},
|
|
933
|
-
|
|
930
|
+
l3 = 1;
|
|
931
|
+
var t = u3, e = Symbol.for("react.element"), s = Symbol.for("react.fragment"), r = Object.prototype.hasOwnProperty, c = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, u = { key: !0, ref: !0, __self: !0, __source: !0 };
|
|
932
|
+
function i(g, f, p) {
|
|
933
|
+
var d, b = {}, P = null, W = null;
|
|
934
|
+
p !== void 0 && (P = "" + p), f.key !== void 0 && (P = "" + f.key), f.ref !== void 0 && (W = f.ref);
|
|
934
935
|
for (d in f)
|
|
935
936
|
r.call(f, d) && !u.hasOwnProperty(d) && (b[d] = f[d]);
|
|
936
937
|
if (g && g.defaultProps)
|
|
937
938
|
for (d in f = g.defaultProps, f)
|
|
938
939
|
b[d] === void 0 && (b[d] = f[d]);
|
|
939
|
-
return { $$typeof: e, type: g, key:
|
|
940
|
+
return { $$typeof: e, type: g, key: P, ref: W, props: b, _owner: c.current };
|
|
940
941
|
}
|
|
941
942
|
return i1.Fragment = s, i1.jsx = i, i1.jsxs = i, i1;
|
|
942
943
|
}
|
|
943
|
-
process.env.NODE_ENV === "production" ?
|
|
944
|
-
var o =
|
|
945
|
-
const
|
|
946
|
-
mwfit:
|
|
947
|
-
},
|
|
948
|
-
const { reconnect: t } = I(), e =
|
|
949
|
-
return /* @__PURE__ */ o.jsx(o.Fragment, { children: /* @__PURE__ */ o.jsxs("div", { className: `disconnected-message ${
|
|
944
|
+
process.env.NODE_ENV === "production" ? $1.exports = $2() : $1.exports = T2();
|
|
945
|
+
var o = $1.exports;
|
|
946
|
+
const P2 = "_mwfit_ppa3l_1", D2 = {
|
|
947
|
+
mwfit: P2
|
|
948
|
+
}, A2 = () => {
|
|
949
|
+
const { reconnect: t } = I(), e = E2(), s = _2();
|
|
950
|
+
return /* @__PURE__ */ o.jsx(o.Fragment, { children: /* @__PURE__ */ o.jsxs("div", { className: `disconnected-message ${D2.mwfit} mx-auto text-center`, children: [
|
|
950
951
|
/* @__PURE__ */ o.jsx("h1", { children: "Disconnected" }),
|
|
951
952
|
e && /* @__PURE__ */ o.jsx("h5", { children: e }),
|
|
952
953
|
s && /* @__PURE__ */ o.jsx("button", { className: "btn btn-secondary btn-lg", onClick: t, children: "Reconnect" })
|
|
953
954
|
] }) });
|
|
954
955
|
};
|
|
955
|
-
class
|
|
956
|
+
class B2 {
|
|
956
957
|
constructor() {
|
|
957
958
|
V(this, "uuid", "current-uuid");
|
|
958
959
|
V(this, "roomKey", "current-room-key");
|
|
@@ -960,71 +961,71 @@ class V2 {
|
|
|
960
961
|
V(this, "expiry", "current-uuid-expires");
|
|
961
962
|
}
|
|
962
963
|
}
|
|
963
|
-
const
|
|
964
|
+
const i3 = new B2(), p3 = s2({
|
|
964
965
|
sendMessage: () => null,
|
|
965
966
|
sendSimpleMessage: () => null,
|
|
966
967
|
addEventHandler: () => null,
|
|
967
968
|
removeEventHandler: () => null,
|
|
968
969
|
reconnect: () => null
|
|
969
970
|
});
|
|
970
|
-
function
|
|
971
|
+
function O2(t) {
|
|
971
972
|
return sessionStorage.getItem(t) || "";
|
|
972
973
|
}
|
|
973
|
-
function
|
|
974
|
+
function V2(t, e) {
|
|
974
975
|
sessionStorage.setItem(t, e);
|
|
975
976
|
}
|
|
976
|
-
const
|
|
977
|
-
const [e, s] = H(), r =
|
|
977
|
+
const k2 = ({ children: t }) => {
|
|
978
|
+
const [e, s] = H(), r = C2(), c = S2(), u = b2(), i = L2(), g = a2(), f = I2(), p = y2(), d = R2(), b = u1(null), [P, W] = H(), O = u1({}), z = c1(
|
|
978
979
|
async (y) => {
|
|
979
980
|
try {
|
|
980
|
-
const
|
|
981
|
-
return
|
|
982
|
-
} catch (
|
|
983
|
-
return console.log(
|
|
981
|
+
const j = await T1.get(`${y}/ui/joinroom?token=${e}`);
|
|
982
|
+
return j.status === 200 && j.data ? (M.dispatch(F.setRoomData(j.data)), !0) : !1;
|
|
983
|
+
} catch (j) {
|
|
984
|
+
return console.log(j), d ? !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);
|
|
984
985
|
}
|
|
985
986
|
},
|
|
986
987
|
[e, d]
|
|
987
988
|
), o1 = c1(() => {
|
|
988
989
|
const y = `${g.gatewayAppPath}?uuid=${f}&roomKey=${c}`;
|
|
989
|
-
window.location.href =
|
|
990
|
-
}, [g.gatewayAppPath, c, f,
|
|
991
|
-
(y,
|
|
992
|
-
b.current && r && b.current.send(JSON.stringify({ type: y, clientId: u, content:
|
|
990
|
+
window.location.href = p ? `${y}&Code=${p}` : y;
|
|
991
|
+
}, [g.gatewayAppPath, c, f, p]), $ = c1(
|
|
992
|
+
(y, j) => {
|
|
993
|
+
b.current && r && b.current.send(JSON.stringify({ type: y, clientId: u, content: j }));
|
|
993
994
|
},
|
|
994
995
|
[r, u]
|
|
995
|
-
), L = (y,
|
|
996
|
-
|
|
996
|
+
), L = (y, j) => {
|
|
997
|
+
$(y, { value: j });
|
|
997
998
|
}, x1 = c1(
|
|
998
|
-
(y,
|
|
999
|
-
O.current[y] || (O.current[y] = {}), O.current[y][
|
|
999
|
+
(y, j, h1) => {
|
|
1000
|
+
O.current[y] || (O.current[y] = {}), O.current[y][j] = h1, console.log("event handler added", y, j);
|
|
1000
1001
|
},
|
|
1001
1002
|
[]
|
|
1002
|
-
),
|
|
1003
|
-
O.current[y] && (delete O.current[y][
|
|
1003
|
+
), m1 = c1((y, j) => {
|
|
1004
|
+
O.current[y] && (delete O.current[y][j], console.log("event handler removed", y, j));
|
|
1004
1005
|
}, []);
|
|
1005
1006
|
return t1(() => {
|
|
1006
|
-
let
|
|
1007
|
-
|
|
1007
|
+
let j = new URLSearchParams(window.location.search).get("token");
|
|
1008
|
+
j ? (console.log("saving token: ", j), V2(i3.uuid, j)) : (j = O2(i3.uuid), console.log("loading token: ", j)), s(j), i();
|
|
1008
1009
|
}, []), t1(() => {
|
|
1009
1010
|
async function y() {
|
|
1010
|
-
if (console.log("effect is running"), !(!g.apiPath ||
|
|
1011
|
+
if (console.log("effect is running"), !(!g.apiPath || P || !e || !await z(g.apiPath)) && !b.current) {
|
|
1011
1012
|
console.log("connecting to websocket");
|
|
1012
|
-
const
|
|
1013
|
+
const M1 = `${g.apiPath.replace("http", "ws")}/ui/join/${e}`, K = new WebSocket(M1);
|
|
1013
1014
|
b.current = K, K.onopen = (A) => {
|
|
1014
|
-
console.log("connected", A.type, A.target),
|
|
1015
|
+
console.log("connected", A.type, A.target), M.dispatch(F.setWebsocketIsConnected(!0));
|
|
1015
1016
|
}, K.onerror = (A) => {
|
|
1016
1017
|
console.log(A);
|
|
1017
1018
|
}, K.onclose = (A) => {
|
|
1018
1019
|
if (console.log("disconnected: ", A.reason, A.code), A.code === 4e3) {
|
|
1019
|
-
console.log("user code changed"),
|
|
1020
|
+
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());
|
|
1020
1021
|
return;
|
|
1021
1022
|
}
|
|
1022
1023
|
if (A.code === 4001 && !d) {
|
|
1023
|
-
console.log("processor disconnected"),
|
|
1024
|
+
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());
|
|
1024
1025
|
return;
|
|
1025
1026
|
}
|
|
1026
1027
|
if (A.code === 4002) {
|
|
1027
|
-
console.log("room combination changed"),
|
|
1028
|
+
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());
|
|
1028
1029
|
return;
|
|
1029
1030
|
}
|
|
1030
1031
|
if (b.current)
|
|
@@ -1033,7 +1034,7 @@ const F2 = ({ children: t }) => {
|
|
|
1033
1034
|
console.log("WebSocket closed by client.");
|
|
1034
1035
|
return;
|
|
1035
1036
|
}
|
|
1036
|
-
|
|
1037
|
+
P || (M.dispatch(F.setWebsocketIsConnected(!1)), M.dispatch(N.clearDevices()), M.dispatch(e1.clearRooms()), W(!0), setTimeout(() => W(void 0), 5e3));
|
|
1037
1038
|
}, K.onmessage = (A) => {
|
|
1038
1039
|
try {
|
|
1039
1040
|
const R = JSON.parse(A.data);
|
|
@@ -1044,22 +1045,23 @@ const F2 = ({ children: t }) => {
|
|
|
1044
1045
|
if (R.type.startsWith("/system/"))
|
|
1045
1046
|
switch (R.type) {
|
|
1046
1047
|
case "/system/touchpanelKey":
|
|
1047
|
-
|
|
1048
|
-
|
|
1048
|
+
M.dispatch(
|
|
1049
|
+
F.setTouchpanelKey(
|
|
1049
1050
|
R.content
|
|
1050
1051
|
)
|
|
1051
1052
|
);
|
|
1052
1053
|
break;
|
|
1053
|
-
case "/system/roomKey":
|
|
1054
|
-
|
|
1055
|
-
|
|
1054
|
+
case "/system/roomKey": {
|
|
1055
|
+
M.dispatch(e1.clearRooms()), M.dispatch(N.clearDevices()), M.dispatch(
|
|
1056
|
+
F.setCurrentRoomKey(
|
|
1056
1057
|
R.content
|
|
1057
1058
|
)
|
|
1058
1059
|
);
|
|
1059
1060
|
break;
|
|
1061
|
+
}
|
|
1060
1062
|
case "/system/userCodeChanged":
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
+
M.dispatch(
|
|
1064
|
+
F.setUserCode(
|
|
1063
1065
|
R.content
|
|
1064
1066
|
)
|
|
1065
1067
|
);
|
|
@@ -1082,7 +1084,7 @@ const F2 = ({ children: t }) => {
|
|
|
1082
1084
|
}
|
|
1083
1085
|
});
|
|
1084
1086
|
} else
|
|
1085
|
-
R.type.startsWith("/room/") ?
|
|
1087
|
+
R.type.startsWith("/room/") ? M.dispatch(e1.setRoomState(R)) : R.type.startsWith("/device/") && M.dispatch(N.setDeviceState(R));
|
|
1086
1088
|
} catch (R) {
|
|
1087
1089
|
console.log(R);
|
|
1088
1090
|
}
|
|
@@ -1092,26 +1094,26 @@ const F2 = ({ children: t }) => {
|
|
|
1092
1094
|
return y(), () => {
|
|
1093
1095
|
b.current && b.current.close(), b.current = null;
|
|
1094
1096
|
};
|
|
1095
|
-
}, [g.apiPath, z, e,
|
|
1096
|
-
!c || !r || (console.log("clientId: ", u), u && (console.log("requesting status from room: ", c),
|
|
1097
|
-
}, [c, u, r,
|
|
1098
|
-
|
|
1097
|
+
}, [g.apiPath, z, e, P, d]), t1(() => {
|
|
1098
|
+
!c || !r || (console.log("clientId: ", u), u && (console.log("requesting status from room: ", c), $(`/room/${c}/status`, null)));
|
|
1099
|
+
}, [c, u, r, $]), /* @__PURE__ */ o.jsx(
|
|
1100
|
+
p3.Provider,
|
|
1099
1101
|
{
|
|
1100
1102
|
value: {
|
|
1101
|
-
sendMessage:
|
|
1103
|
+
sendMessage: $,
|
|
1102
1104
|
sendSimpleMessage: L,
|
|
1103
1105
|
addEventHandler: x1,
|
|
1104
|
-
removeEventHandler:
|
|
1106
|
+
removeEventHandler: m1,
|
|
1105
1107
|
reconnect: o1
|
|
1106
1108
|
},
|
|
1107
|
-
children: r ? t : /* @__PURE__ */ o.jsx(
|
|
1109
|
+
children: r ? t : /* @__PURE__ */ o.jsx(A2, {})
|
|
1108
1110
|
}
|
|
1109
1111
|
);
|
|
1110
|
-
},
|
|
1112
|
+
}, x6 = ({ children: t }) => /* @__PURE__ */ o.jsx(N3, { store: M, children: /* @__PURE__ */ o.jsx(k2, { children: t }) });
|
|
1111
1113
|
function I() {
|
|
1112
|
-
return
|
|
1114
|
+
return n2(p3);
|
|
1113
1115
|
}
|
|
1114
|
-
function
|
|
1116
|
+
function U2({
|
|
1115
1117
|
onPress: t,
|
|
1116
1118
|
onRelease: e,
|
|
1117
1119
|
onHold: s,
|
|
@@ -1145,9 +1147,9 @@ function v(t, e) {
|
|
|
1145
1147
|
function i() {
|
|
1146
1148
|
c.current && (clearInterval(c.current), c.current = null), r(`${t}/${e}`, { value: "released" });
|
|
1147
1149
|
}
|
|
1148
|
-
return
|
|
1150
|
+
return U2({ onPress: u, onRelease: i });
|
|
1149
1151
|
}
|
|
1150
|
-
function
|
|
1152
|
+
function x3(t, e) {
|
|
1151
1153
|
const { sendMessage: s, sendSimpleMessage: r } = I(), c = v(`${t}`, "volumeUp"), u = v(`${t}`, "volumeDown");
|
|
1152
1154
|
return e ? {
|
|
1153
1155
|
volumeState: e,
|
|
@@ -1171,11 +1173,11 @@ function m6(t, e) {
|
|
|
1171
1173
|
muteOff: () => s(`${t}/muteOff`, null)
|
|
1172
1174
|
} : void 0;
|
|
1173
1175
|
}
|
|
1174
|
-
function
|
|
1175
|
-
const e =
|
|
1176
|
-
return
|
|
1176
|
+
function W2(t) {
|
|
1177
|
+
const e = T(t), s = `/device/${t}`;
|
|
1178
|
+
return x3(s, e == null ? void 0 : e.volume);
|
|
1177
1179
|
}
|
|
1178
|
-
function
|
|
1180
|
+
function m3(t) {
|
|
1179
1181
|
const { sendMessage: e } = I();
|
|
1180
1182
|
return { powerOn: () => {
|
|
1181
1183
|
e(`/device/${t}/powerOn`, null);
|
|
@@ -1185,14 +1187,14 @@ function j3(t) {
|
|
|
1185
1187
|
e(`/device/${t}/powerToggle`, null);
|
|
1186
1188
|
} };
|
|
1187
1189
|
}
|
|
1188
|
-
function
|
|
1189
|
-
const { sendMessage: e } = I(), s =
|
|
1190
|
+
function P1(t) {
|
|
1191
|
+
const { sendMessage: e } = I(), s = T(t);
|
|
1190
1192
|
return console.log("deviceState", s), s ? { itemsState: s, selectItem: (c) => {
|
|
1191
1193
|
e(`/device/${t}/${c}`, null);
|
|
1192
1194
|
} } : void 0;
|
|
1193
1195
|
}
|
|
1194
|
-
function
|
|
1195
|
-
const { sendMessage: e } = I(), s =
|
|
1196
|
+
function F2(t) {
|
|
1197
|
+
const { sendMessage: e } = I(), s = T(t), r = () => {
|
|
1196
1198
|
e(`/device/${t}/setDefaultChannelLevels`, null);
|
|
1197
1199
|
}, c = () => {
|
|
1198
1200
|
if ((s == null ? void 0 : s.levelControls) === void 0)
|
|
@@ -1203,8 +1205,8 @@ function K2(t) {
|
|
|
1203
1205
|
};
|
|
1204
1206
|
return s ? { levelControls: s.levelControls, setDefaultChannelLevels: r, getFullStatus: c } : void 0;
|
|
1205
1207
|
}
|
|
1206
|
-
function
|
|
1207
|
-
const e =
|
|
1208
|
+
function M6(t) {
|
|
1209
|
+
const e = T(t), s = m3(t), r = P1(t), c = P1(t), u = W2(t), i = F2(t);
|
|
1208
1210
|
if (e)
|
|
1209
1211
|
return {
|
|
1210
1212
|
avrState: e,
|
|
@@ -1215,46 +1217,46 @@ function Z6(t) {
|
|
|
1215
1217
|
mainVolumeControl: u
|
|
1216
1218
|
};
|
|
1217
1219
|
}
|
|
1218
|
-
function
|
|
1219
|
-
const e =
|
|
1220
|
+
function Z6(t) {
|
|
1221
|
+
const e = T(t);
|
|
1220
1222
|
if (e)
|
|
1221
1223
|
return { endpointState: e };
|
|
1222
1224
|
}
|
|
1223
|
-
function
|
|
1225
|
+
function j6(t) {
|
|
1224
1226
|
const e = `/device/${t}`, s = v(e, "chanUp"), r = v(e, "chanDown"), c = v(e, "lastChan"), u = v(e, "guide"), i = v(e, "info"), g = v(e, "exit");
|
|
1225
1227
|
return { channelUp: s, channelDown: r, lastChannel: c, guide: u, info: i, exit: g };
|
|
1226
1228
|
}
|
|
1227
|
-
function
|
|
1229
|
+
function C6(t) {
|
|
1228
1230
|
const e = `/device/${t}`, s = v(e, "red"), r = v(e, "green"), c = v(e, "yellow"), u = v(e, "blue");
|
|
1229
1231
|
return { red: s, green: r, yellow: c, blue: u };
|
|
1230
1232
|
}
|
|
1231
|
-
function
|
|
1232
|
-
const e =
|
|
1233
|
+
function S6(t) {
|
|
1234
|
+
const e = T(t);
|
|
1233
1235
|
if (e)
|
|
1234
1236
|
return {
|
|
1235
1237
|
communicationMonitorState: e
|
|
1236
1238
|
};
|
|
1237
1239
|
}
|
|
1238
|
-
function
|
|
1240
|
+
function b6(t) {
|
|
1239
1241
|
const e = `/device/${t}`, s = v(e, "up"), r = v(e, "down"), c = v(e, "left"), u = v(e, "right"), i = v(e, "select"), g = v(e, "menu"), f = v(e, "exit");
|
|
1240
1242
|
return { up: s, down: r, left: c, right: u, select: i, menu: g, exit: f };
|
|
1241
1243
|
}
|
|
1242
|
-
function
|
|
1243
|
-
const e =
|
|
1244
|
+
function I6(t) {
|
|
1245
|
+
const e = T(t);
|
|
1244
1246
|
if (e)
|
|
1245
1247
|
return e.deviceInfo || void 0;
|
|
1246
1248
|
}
|
|
1247
|
-
function
|
|
1249
|
+
function y6(t) {
|
|
1248
1250
|
const { sendMessage: e } = I();
|
|
1249
1251
|
return { recallPreset: (r) => {
|
|
1250
1252
|
e(`/device/${t}/recallPreset`, r);
|
|
1251
1253
|
} };
|
|
1252
1254
|
}
|
|
1253
|
-
function
|
|
1255
|
+
function R6(t) {
|
|
1254
1256
|
const e = `/device/${t}`, s = v(e, "dvrList"), r = v(e, "record");
|
|
1255
1257
|
return { dvrList: s, record: r };
|
|
1256
1258
|
}
|
|
1257
|
-
const
|
|
1259
|
+
const E6 = ({ className: t }) => {
|
|
1258
1260
|
const [e, s] = H();
|
|
1259
1261
|
return t1(() => {
|
|
1260
1262
|
setInterval(() => {
|
|
@@ -1266,8 +1268,8 @@ const _6 = ({ className: t }) => {
|
|
|
1266
1268
|
" new change"
|
|
1267
1269
|
] });
|
|
1268
1270
|
};
|
|
1269
|
-
function
|
|
1270
|
-
const { sendMessage: e } = I(), s =
|
|
1271
|
+
function _6(t) {
|
|
1272
|
+
const { sendMessage: e } = I(), s = T(t);
|
|
1271
1273
|
return s ? { roomCombinerState: s, setAutoMode: () => {
|
|
1272
1274
|
e(`/device/${t}/setAutoMode`, null);
|
|
1273
1275
|
}, setManualMode: () => {
|
|
@@ -1280,8 +1282,8 @@ function L6(t) {
|
|
|
1280
1282
|
e(`/device/${t}/setRoomCombinationScenario`, f);
|
|
1281
1283
|
} } : void 0;
|
|
1282
1284
|
}
|
|
1283
|
-
function
|
|
1284
|
-
const { sendMessage: e, sendSimpleMessage: s } = I(), r =
|
|
1285
|
+
function L6(t) {
|
|
1286
|
+
const { sendMessage: e, sendSimpleMessage: s } = I(), r = T(t), c = j2(t), u = r || c;
|
|
1285
1287
|
return u ? {
|
|
1286
1288
|
levelState: u,
|
|
1287
1289
|
setLevel: (d, b) => s(`${d}/level`, b),
|
|
@@ -1290,60 +1292,60 @@ function $6(t) {
|
|
|
1290
1292
|
muteOff: (d) => e(`${d}/muteOff`, null)
|
|
1291
1293
|
} : void 0;
|
|
1292
1294
|
}
|
|
1293
|
-
function
|
|
1294
|
-
const { sendMessage: e } = I(), s =
|
|
1295
|
+
function T6(t) {
|
|
1296
|
+
const { sendMessage: e } = I(), s = T(t);
|
|
1295
1297
|
return s ? { lightingState: s, selectScene: (c) => {
|
|
1296
1298
|
e(`/device/${t}/selectScene`, c);
|
|
1297
1299
|
} } : void 0;
|
|
1298
1300
|
}
|
|
1299
|
-
function
|
|
1300
|
-
const { sendMessage: e } = I(), s =
|
|
1301
|
+
function $6(t) {
|
|
1302
|
+
const { sendMessage: e } = I(), s = T(t);
|
|
1301
1303
|
return s ? { matrixRoutingState: s, setRoute: (c) => {
|
|
1302
1304
|
e(`/device/${t}/route`, c);
|
|
1303
1305
|
} } : void 0;
|
|
1304
1306
|
}
|
|
1305
|
-
function
|
|
1307
|
+
function P6(t) {
|
|
1306
1308
|
const { sendMessage: e } = I();
|
|
1307
1309
|
return { closeApp: () => {
|
|
1308
1310
|
e(`/device/${t}/closeWebViewController`, null);
|
|
1309
1311
|
} };
|
|
1310
1312
|
}
|
|
1311
|
-
function
|
|
1312
|
-
const e = `/device/${t}`, s = v(e, "num0"), r = v(e, "num1"), c = v(e, "num2"), u = v(e, "num3"), i = v(e, "num4"), g = v(e, "num5"), f = v(e, "num6"),
|
|
1313
|
-
return { digit0: s, digit1: r, digit2: c, digit3: u, digit4: i, digit5: g, digit6: f, digit7:
|
|
1313
|
+
function D6(t) {
|
|
1314
|
+
const e = `/device/${t}`, s = v(e, "num0"), r = v(e, "num1"), c = v(e, "num2"), u = v(e, "num3"), i = v(e, "num4"), g = v(e, "num5"), f = v(e, "num6"), p = v(e, "num7"), d = v(e, "num8"), b = v(e, "num9"), P = v(e, "numDash"), W = v(e, "numEnter");
|
|
1315
|
+
return { digit0: s, digit1: r, digit2: c, digit3: u, digit4: i, digit5: g, digit6: f, digit7: p, digit8: d, digit9: b, keypadAccessoryButton1: P, keypadAccessoryButton2: W };
|
|
1314
1316
|
}
|
|
1315
|
-
function
|
|
1316
|
-
const { sendMessage: e } = I(), s =
|
|
1317
|
+
function A6(t) {
|
|
1318
|
+
const { sendMessage: e } = I(), s = T(t);
|
|
1317
1319
|
return s ? { projectorScreenLiftControlState: s, raise: () => {
|
|
1318
1320
|
e(`/device/${t}/raise`, null);
|
|
1319
1321
|
}, lower: () => {
|
|
1320
1322
|
e(`/device/${t}/lower`, null);
|
|
1321
1323
|
} } : void 0;
|
|
1322
1324
|
}
|
|
1323
|
-
function
|
|
1324
|
-
const { sendMessage: e } = I(), s =
|
|
1325
|
+
function B6(t) {
|
|
1326
|
+
const { sendMessage: e } = I(), s = D1(t);
|
|
1325
1327
|
return s ? { roomEventScheduleState: s, save: (c) => {
|
|
1326
1328
|
e(`/room/${t}/saveScheduledEvents`, c);
|
|
1327
1329
|
} } : void 0;
|
|
1328
1330
|
}
|
|
1329
|
-
function
|
|
1331
|
+
function O6(t) {
|
|
1330
1332
|
const { sendMessage: e } = I();
|
|
1331
1333
|
return { runDirectRoute: (r) => {
|
|
1332
1334
|
e(`/room/${t}/directRoute`, r);
|
|
1333
1335
|
} };
|
|
1334
1336
|
}
|
|
1335
|
-
function
|
|
1337
|
+
function V6(t) {
|
|
1336
1338
|
const { sendMessage: e } = I();
|
|
1337
|
-
return { routingState:
|
|
1339
|
+
return { routingState: T(t), runRoute: (c) => {
|
|
1338
1340
|
e(`/room/${t}/source`, c);
|
|
1339
1341
|
} };
|
|
1340
1342
|
}
|
|
1341
|
-
function
|
|
1343
|
+
function k6(t) {
|
|
1342
1344
|
const e = `/device/${t}`, s = v(e, "chanUp"), r = v(e, "chanDown");
|
|
1343
1345
|
return { dvrList: s, replay: r };
|
|
1344
1346
|
}
|
|
1345
|
-
function
|
|
1346
|
-
const { sendMessage: e } = I(), s =
|
|
1347
|
+
function U6(t) {
|
|
1348
|
+
const { sendMessage: e } = I(), s = T(t);
|
|
1347
1349
|
return s ? { shadeState: s, shadeUp: () => {
|
|
1348
1350
|
e(`/device/${t}/shadeUp`, null);
|
|
1349
1351
|
}, shadeDown: () => {
|
|
@@ -1353,7 +1355,7 @@ function F6(t) {
|
|
|
1353
1355
|
} } : void 0;
|
|
1354
1356
|
}
|
|
1355
1357
|
function W6(t) {
|
|
1356
|
-
const { sendMessage: e } = I(), s =
|
|
1358
|
+
const { sendMessage: e } = I(), s = D1(t);
|
|
1357
1359
|
return s ? { shutdownPromptTimerState: s, setShutdownPromptSeconds: (g) => {
|
|
1358
1360
|
e(`/room/${t}/setShutdownPromptSeconds`, g);
|
|
1359
1361
|
}, shutdownStart: () => {
|
|
@@ -1364,28 +1366,28 @@ function W6(t) {
|
|
|
1364
1366
|
e(`/room/${t}/shutdownCancel`, null);
|
|
1365
1367
|
} } : void 0;
|
|
1366
1368
|
}
|
|
1367
|
-
function
|
|
1368
|
-
const { sendMessage: e } = I(), s =
|
|
1369
|
+
function F6(t) {
|
|
1370
|
+
const { sendMessage: e } = I(), s = T(t);
|
|
1369
1371
|
return s ? { switchedOutputState: s, on: () => {
|
|
1370
1372
|
e(`/device/${t}/on`, null);
|
|
1371
1373
|
}, off: () => {
|
|
1372
1374
|
e(`/device/${t}/off`, null);
|
|
1373
1375
|
} } : void 0;
|
|
1374
1376
|
}
|
|
1375
|
-
function
|
|
1376
|
-
const { sendMessage: e } = I(), s =
|
|
1377
|
+
function H6(t) {
|
|
1378
|
+
const { sendMessage: e } = I(), s = D1(t);
|
|
1377
1379
|
return s ? { techPasswordState: s, validatePassword: (u) => {
|
|
1378
1380
|
e(`/room/${t}/validateTechPassword`, { password: u });
|
|
1379
1381
|
}, setPassword: (u, i) => {
|
|
1380
1382
|
e(`/room/${t}/setTechPassword`, { oldPassword: u, newPassword: i });
|
|
1381
1383
|
} } : void 0;
|
|
1382
1384
|
}
|
|
1383
|
-
function
|
|
1384
|
-
const e = `/device/${t}`, s = v(e, "play"), r = v(e, "pause"), c = v(e, "stop"), u = v(e, "prevTrack"), i = v(e, "nextTrack"), g = v(e, "rewind"), f = v(e, "ffwd"),
|
|
1385
|
-
return { play: s, pause: r, stop: c, prevTrack: u, nextTrack: i, rewind: g, fastForward: f, record:
|
|
1385
|
+
function K6(t) {
|
|
1386
|
+
const e = `/device/${t}`, s = v(e, "play"), r = v(e, "pause"), c = v(e, "stop"), u = v(e, "prevTrack"), i = v(e, "nextTrack"), g = v(e, "rewind"), f = v(e, "ffwd"), p = v(e, "record");
|
|
1387
|
+
return { play: s, pause: r, stop: c, prevTrack: u, nextTrack: i, rewind: g, fastForward: f, record: p };
|
|
1386
1388
|
}
|
|
1387
|
-
function
|
|
1388
|
-
const e =
|
|
1389
|
+
function G6(t) {
|
|
1390
|
+
const e = T(t), { sendMessage: s } = I();
|
|
1389
1391
|
return e ? {
|
|
1390
1392
|
touchpanelState: e,
|
|
1391
1393
|
appControl: { hideApp: () => {
|
|
@@ -1400,8 +1402,8 @@ function q6(t) {
|
|
|
1400
1402
|
} }
|
|
1401
1403
|
} : void 0;
|
|
1402
1404
|
}
|
|
1403
|
-
function
|
|
1404
|
-
const e =
|
|
1405
|
+
function q6(t) {
|
|
1406
|
+
const e = T(t), s = m3(t), r = P1(t);
|
|
1405
1407
|
if (!e)
|
|
1406
1408
|
return;
|
|
1407
1409
|
const c = (e.powerState || e.isWarming) && !e.isCooling, u = (!e.powerState || e.isCooling) && !e.isWarming;
|
|
@@ -1412,14 +1414,14 @@ function Y6(t) {
|
|
|
1412
1414
|
powerFb: { powerOnFb: c, powerOffFb: u }
|
|
1413
1415
|
};
|
|
1414
1416
|
}
|
|
1415
|
-
function
|
|
1417
|
+
function Y6(t) {
|
|
1416
1418
|
const { sendMessage: e } = I();
|
|
1417
1419
|
return { runDefaultPresentRoute: () => {
|
|
1418
1420
|
e(`/room/${t}/defaultsource`, {});
|
|
1419
1421
|
} };
|
|
1420
1422
|
}
|
|
1421
|
-
function
|
|
1422
|
-
const { sendMessage: e } = I(), s =
|
|
1423
|
+
function z6(t) {
|
|
1424
|
+
const { sendMessage: e } = I(), s = T(t), r = (c) => {
|
|
1423
1425
|
e(`/device/${t}/saveTheme`, { value: c });
|
|
1424
1426
|
};
|
|
1425
1427
|
return {
|
|
@@ -1427,7 +1429,7 @@ function J6(t) {
|
|
|
1427
1429
|
saveTheme: r
|
|
1428
1430
|
};
|
|
1429
1431
|
}
|
|
1430
|
-
const
|
|
1432
|
+
const J6 = ({ config: t }) => {
|
|
1431
1433
|
const { sendMessage: e } = I();
|
|
1432
1434
|
t1(() => {
|
|
1433
1435
|
var r, c, u;
|
|
@@ -1456,11 +1458,11 @@ const X6 = ({ config: t }) => {
|
|
|
1456
1458
|
});
|
|
1457
1459
|
}, [t, e]);
|
|
1458
1460
|
};
|
|
1459
|
-
function
|
|
1460
|
-
const s =
|
|
1461
|
-
return
|
|
1461
|
+
function X6(t, e) {
|
|
1462
|
+
const s = Z2(t, e), r = `/room/${t}/volumes/${e}`;
|
|
1463
|
+
return x3(r, s);
|
|
1462
1464
|
}
|
|
1463
|
-
function
|
|
1465
|
+
function Q6() {
|
|
1464
1466
|
const { sendMessage: t } = I();
|
|
1465
1467
|
return {
|
|
1466
1468
|
reboot: () => {
|
|
@@ -1471,7 +1473,7 @@ function N6() {
|
|
|
1471
1473
|
}
|
|
1472
1474
|
};
|
|
1473
1475
|
}
|
|
1474
|
-
function
|
|
1476
|
+
function N6() {
|
|
1475
1477
|
const [t, e] = H(), [s, r] = H();
|
|
1476
1478
|
function c() {
|
|
1477
1479
|
e((/* @__PURE__ */ new Date()).toLocaleDateString("en-US", { dateStyle: "long" }));
|
|
@@ -1486,46 +1488,46 @@ function ee() {
|
|
|
1486
1488
|
return () => clearInterval(u);
|
|
1487
1489
|
}, []), { date: t, time: s };
|
|
1488
1490
|
}
|
|
1489
|
-
function
|
|
1491
|
+
function ee(t, e) {
|
|
1490
1492
|
const [s, r] = H(!1), [c, u] = H(!1);
|
|
1491
|
-
return
|
|
1493
|
+
return d3(() => {
|
|
1492
1494
|
const { current: i } = t, g = () => {
|
|
1493
|
-
const f = i && i.scrollHeight > i.clientHeight,
|
|
1494
|
-
u(f ?? !1), r(
|
|
1495
|
+
const f = i && i.scrollHeight > i.clientHeight, p = i && i.scrollWidth > i.clientWidth;
|
|
1496
|
+
u(f ?? !1), r(p ?? !1), e && e(f ?? !1, p ?? !1);
|
|
1495
1497
|
};
|
|
1496
1498
|
i && g();
|
|
1497
1499
|
}, [t, e]), { overflowHorizontal: s, overflowVertical: c };
|
|
1498
1500
|
}
|
|
1499
|
-
function
|
|
1501
|
+
function te(t) {
|
|
1500
1502
|
var g, f;
|
|
1501
|
-
const [e, s] = H(((g = t == null ? void 0 : t.current) == null ? void 0 : g.scrollLeft) ?? 0), [r, c] = H(((f = t == null ? void 0 : t.current) == null ? void 0 : f.scrollTop) ?? 0), u = (
|
|
1503
|
+
const [e, s] = H(((g = t == null ? void 0 : t.current) == null ? void 0 : g.scrollLeft) ?? 0), [r, c] = H(((f = t == null ? void 0 : t.current) == null ? void 0 : f.scrollTop) ?? 0), u = (p) => {
|
|
1502
1504
|
const { current: d } = t;
|
|
1503
|
-
d && (console.log(d.scrollLeft), d.scrollLeft +=
|
|
1504
|
-
}, i = (
|
|
1505
|
+
d && (console.log(d.scrollLeft), d.scrollLeft += p, console.log(d.scrollLeft));
|
|
1506
|
+
}, i = (p) => {
|
|
1505
1507
|
const { current: d } = t;
|
|
1506
|
-
d && (console.log(d.scrollTop), d.scrollTop +=
|
|
1508
|
+
d && (console.log(d.scrollTop), d.scrollTop += p, console.log(d.scrollTop));
|
|
1507
1509
|
};
|
|
1508
|
-
return
|
|
1509
|
-
const { current:
|
|
1510
|
-
s((
|
|
1510
|
+
return d3(() => {
|
|
1511
|
+
const { current: p } = t, d = () => {
|
|
1512
|
+
s((p == null ? void 0 : p.scrollLeft) ?? 0), c((p == null ? void 0 : p.scrollTop) ?? 0);
|
|
1511
1513
|
};
|
|
1512
|
-
|
|
1514
|
+
p && d();
|
|
1513
1515
|
}, [t]), { horizontalScrollPosition: e, verticalScrollPosition: r, scrollHorizontal: u, scrollVertical: i };
|
|
1514
1516
|
}
|
|
1515
|
-
const
|
|
1516
|
-
const [t, e] = H(!1), s =
|
|
1517
|
+
const oe = () => {
|
|
1518
|
+
const [t, e] = H(!1), s = r2(), r = c2();
|
|
1517
1519
|
let c;
|
|
1518
|
-
return
|
|
1520
|
+
return l2(r) ? c = r.statusText : r instanceof Error ? c = r.message : typeof r == "string" ? c = r : (console.error(r), c = "Unknown error"), /* @__PURE__ */ o.jsxs("div", { className: "d-flex flex-column align-items-center gap-5", children: [
|
|
1519
1521
|
/* @__PURE__ */ o.jsx("div", { className: "m-2 p-2 bg-danger rounded d-flex align-items-center", children: /* @__PURE__ */ o.jsx("span", { className: "fs-5 text-white", children: "We are sorry. Something went wrong." }) }),
|
|
1520
1522
|
/* @__PURE__ */ o.jsx("button", { className: "btn btn-primary p-2", onClick: () => s(-1), children: "Go Back" }),
|
|
1521
1523
|
/* @__PURE__ */ o.jsx("button", { className: "btn btn-primary p-2", onClick: () => e(!t), children: t ? "Hide error message" : "Show error message" }),
|
|
1522
1524
|
t && /* @__PURE__ */ o.jsx("p", { children: c })
|
|
1523
1525
|
] });
|
|
1524
|
-
},
|
|
1525
|
-
iconbtn:
|
|
1526
|
-
iconbtnvert:
|
|
1527
|
-
iconsm:
|
|
1528
|
-
},
|
|
1526
|
+
}, H2 = "_iconbtn_16qss_1", K2 = "_iconbtnvert_16qss_7", G2 = "_iconsm_16qss_18", _1 = {
|
|
1527
|
+
iconbtn: H2,
|
|
1528
|
+
iconbtnvert: K2,
|
|
1529
|
+
iconsm: G2
|
|
1530
|
+
}, q2 = ({
|
|
1529
1531
|
multiIcon: t,
|
|
1530
1532
|
otherContent: e = null,
|
|
1531
1533
|
vert: s = !1,
|
|
@@ -1535,27 +1537,27 @@ const se = () => {
|
|
|
1535
1537
|
disabled: i,
|
|
1536
1538
|
feedback: g,
|
|
1537
1539
|
feedbackClassName: f,
|
|
1538
|
-
onPointerDown:
|
|
1540
|
+
onPointerDown: p,
|
|
1539
1541
|
onPointerUp: d,
|
|
1540
1542
|
onPointerLeave: b,
|
|
1541
|
-
...
|
|
1543
|
+
...P
|
|
1542
1544
|
}) => {
|
|
1543
|
-
const [
|
|
1545
|
+
const [W, O] = H(!1), z = !i && g ? f : "", o1 = !i && (W || g);
|
|
1544
1546
|
return /* @__PURE__ */ o.jsxs(
|
|
1545
1547
|
"button",
|
|
1546
1548
|
{
|
|
1547
1549
|
type: "button",
|
|
1548
1550
|
className: `${_1.iconbtn} ${s ? _1.iconbtnvert : ""} ${r} ${z}`,
|
|
1549
|
-
...
|
|
1551
|
+
...P,
|
|
1550
1552
|
disabled: i,
|
|
1551
|
-
onPointerDown: (
|
|
1552
|
-
O(!0),
|
|
1553
|
+
onPointerDown: ($) => {
|
|
1554
|
+
O(!0), p == null || p($);
|
|
1553
1555
|
},
|
|
1554
|
-
onPointerUp: (
|
|
1555
|
-
O(!1), d == null || d(
|
|
1556
|
+
onPointerUp: ($) => {
|
|
1557
|
+
O(!1), d == null || d($);
|
|
1556
1558
|
},
|
|
1557
|
-
onPointerLeave: (
|
|
1558
|
-
O(!1), b == null || b(
|
|
1559
|
+
onPointerLeave: ($) => {
|
|
1560
|
+
O(!1), b == null || b($);
|
|
1559
1561
|
},
|
|
1560
1562
|
children: [
|
|
1561
1563
|
t && /* @__PURE__ */ o.jsx(
|
|
@@ -1570,18 +1572,18 @@ const se = () => {
|
|
|
1570
1572
|
]
|
|
1571
1573
|
}
|
|
1572
1574
|
);
|
|
1573
|
-
},
|
|
1575
|
+
}, Z = ({
|
|
1574
1576
|
ActiveImage: t,
|
|
1575
1577
|
DisabledImage: e,
|
|
1576
1578
|
EnabledImage: s,
|
|
1577
1579
|
active: r,
|
|
1578
1580
|
disabled: c
|
|
1579
|
-
}) => c ? e : r ? t : s,
|
|
1581
|
+
}) => c ? e : r ? t : s, Y2 = ({
|
|
1580
1582
|
active: t,
|
|
1581
1583
|
className: e = "",
|
|
1582
1584
|
disabled: s
|
|
1583
1585
|
}) => /* @__PURE__ */ o.jsx(
|
|
1584
|
-
|
|
1586
|
+
Z,
|
|
1585
1587
|
{
|
|
1586
1588
|
ActiveImage: /* @__PURE__ */ o.jsx(
|
|
1587
1589
|
"svg",
|
|
@@ -1628,12 +1630,12 @@ const se = () => {
|
|
|
1628
1630
|
active: t,
|
|
1629
1631
|
disabled: s
|
|
1630
1632
|
}
|
|
1631
|
-
),
|
|
1633
|
+
), z2 = ({
|
|
1632
1634
|
active: t,
|
|
1633
1635
|
className: e = "",
|
|
1634
1636
|
disabled: s
|
|
1635
1637
|
}) => /* @__PURE__ */ o.jsx(
|
|
1636
|
-
|
|
1638
|
+
Z,
|
|
1637
1639
|
{
|
|
1638
1640
|
ActiveImage: (
|
|
1639
1641
|
/* icon-ban-active.svg */
|
|
@@ -1677,12 +1679,12 @@ const se = () => {
|
|
|
1677
1679
|
active: t,
|
|
1678
1680
|
disabled: s
|
|
1679
1681
|
}
|
|
1680
|
-
),
|
|
1682
|
+
), J2 = ({
|
|
1681
1683
|
active: t,
|
|
1682
1684
|
className: e = "",
|
|
1683
1685
|
disabled: s
|
|
1684
1686
|
}) => /* @__PURE__ */ o.jsx(
|
|
1685
|
-
|
|
1687
|
+
Z,
|
|
1686
1688
|
{
|
|
1687
1689
|
ActiveImage: /* @__PURE__ */ o.jsx(
|
|
1688
1690
|
"svg",
|
|
@@ -1717,12 +1719,12 @@ const se = () => {
|
|
|
1717
1719
|
active: t,
|
|
1718
1720
|
disabled: s
|
|
1719
1721
|
}
|
|
1720
|
-
),
|
|
1722
|
+
), X2 = ({
|
|
1721
1723
|
active: t,
|
|
1722
1724
|
className: e = "",
|
|
1723
1725
|
disabled: s
|
|
1724
1726
|
}) => /* @__PURE__ */ o.jsx(
|
|
1725
|
-
|
|
1727
|
+
Z,
|
|
1726
1728
|
{
|
|
1727
1729
|
ActiveImage: (
|
|
1728
1730
|
/* icon-check-active.svg */
|
|
@@ -1766,14 +1768,14 @@ const se = () => {
|
|
|
1766
1768
|
active: t,
|
|
1767
1769
|
disabled: s
|
|
1768
1770
|
}
|
|
1769
|
-
),
|
|
1771
|
+
), Q2 = ({
|
|
1770
1772
|
active: t,
|
|
1771
1773
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
1772
1774
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1773
1775
|
className: e = "",
|
|
1774
1776
|
disabled: s
|
|
1775
1777
|
}) => /* @__PURE__ */ o.jsx(
|
|
1776
|
-
|
|
1778
|
+
Z,
|
|
1777
1779
|
{
|
|
1778
1780
|
ActiveImage: (
|
|
1779
1781
|
/* icon-controller-active.svg */
|
|
@@ -1788,7 +1790,7 @@ const se = () => {
|
|
|
1788
1790
|
"path",
|
|
1789
1791
|
{
|
|
1790
1792
|
d: "M111.57,63.01c-.5-1.94-1.51-3.52-3.02-4.74-1.51-1.22-3.27-1.83-5.28-1.83h-42.04c-2.01,0-3.79.61-5.34,1.83-1.54,1.22-2.53,2.8-2.96,4.74l-9.06,36.11c-.14.43-.22,1.08-.22,1.94,0,2.01.74,3.7,2.21,5.07,1.47,1.37,3.25,2.05,5.34,2.05,1.37,0,2.6-.36,3.72-1.08,1.11-.72,1.96-1.69,2.53-2.91l3.02-6.14c1.08-2.23,2.66-3.97,4.74-5.23,2.08-1.26,4.35-1.89,6.79-1.89h20.48c2.44,0,4.71.65,6.79,1.94,2.08,1.29,3.7,3.02,4.85,5.17l3.02,6.14c.58,1.22,1.42,2.19,2.53,2.91,1.11.72,2.35,1.08,3.72,1.08,2.01,0,3.74-.66,5.17-1.99,1.44-1.33,2.19-3,2.26-5.01,0,.07-.07-.61-.22-2.05l-9.06-36.11ZM94.27,61.98c.83-.83,1.85-1.24,3.07-1.24s2.25.41,3.07,1.24c.83.83,1.24,1.85,1.24,3.07s-.41,2.25-1.24,3.07c-.83.83-1.85,1.24-3.07,1.24s-2.25-.41-3.07-1.24c-.83-.83-1.24-1.85-1.24-3.07s.41-2.25,1.24-3.07ZM77.02,76c-.61.61-1.38.92-2.32.92h-4.31v4.31c0,.93-.31,1.71-.92,2.32-.61.61-1.38.92-2.32.92s-1.71-.31-2.32-.92c-.61-.61-.92-1.38-.92-2.32v-4.31h-4.31c-.93,0-1.71-.31-2.32-.92-.61-.61-.92-1.38-.92-2.32s.31-1.71.92-2.32c.61-.61,1.38-.92,2.32-.92h4.31v-4.31c0-.93.31-1.71.92-2.32.61-.61,1.38-.92,2.32-.92s1.71.31,2.32.92c.61.61.92,1.38.92,2.32v4.31h4.31c.93,0,1.71.31,2.32.92s.92,1.38.92,2.32-.31,1.71-.92,2.32ZM91.79,76.75c-.83.83-1.85,1.24-3.07,1.24s-2.25-.41-3.07-1.24c-.83-.83-1.24-1.85-1.24-3.07s.41-2.25,1.24-3.07c.83-.83,1.85-1.24,3.07-1.24s2.25.41,3.07,1.24c.83.83,1.24,1.85,1.24,3.07s-.41,2.25-1.24,3.07ZM100.41,85.38c-.83.83-1.85,1.24-3.07,1.24s-2.25-.41-3.07-1.24c-.83-.83-1.24-1.85-1.24-3.07s.41-2.25,1.24-3.07c.83-.83,1.85-1.24,3.07-1.24s2.25.41,3.07,1.24c.83.83,1.24,1.85,1.24,3.07s-.41,2.25-1.24,3.07ZM109.04,76.75c-.83.83-1.85,1.24-3.07,1.24s-2.25-.41-3.07-1.24c-.83-.83-1.24-1.85-1.24-3.07s.41-2.25,1.24-3.07c.83-.83,1.85-1.24,3.07-1.24s2.25.41,3.07,1.24,1.24,1.85,1.24,3.07-.41,2.25-1.24,3.07ZM82.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,0ZM124.89,112.22c-3.13,3.05-6.88,4.58-11.27,4.58-3.02,0-5.82-.79-8.41-2.37-2.59-1.58-4.53-3.74-5.82-6.47l-3.02-6.25c-.36-.72-.9-1.26-1.62-1.62-.72-.36-1.47-.54-2.26-.54h-20.48c-.79,0-1.55.18-2.26.54-.72.36-1.26.9-1.62,1.62l-3.02,6.25c-1.29,2.73-3.23,4.89-5.82,6.47-2.59,1.58-5.39,2.37-8.41,2.37-4.31,0-8-1.55-11.05-4.64-3.05-3.09-4.65-6.83-4.8-11.21,0-.65.04-1.29.11-1.94.07-.65.18-1.29.32-1.94l9.06-36.22c1.01-3.88,3.05-7.03,6.15-9.43,3.09-2.41,6.61-3.61,10.56-3.61h42.04c3.95,0,7.47,1.2,10.56,3.61,3.09,2.41,5.14,5.55,6.14,9.43l9.06,36.22c.14.65.27,1.31.38,1.99s.16,1.35.16,1.99c0,4.38-1.56,8.1-4.69,11.16Z",
|
|
1791
|
-
|
|
1793
|
+
strokeWidth: "0"
|
|
1792
1794
|
}
|
|
1793
1795
|
) })
|
|
1794
1796
|
}
|
|
@@ -1807,7 +1809,7 @@ const se = () => {
|
|
|
1807
1809
|
"path",
|
|
1808
1810
|
{
|
|
1809
1811
|
d: "M96.54,86.55l5.04-5.04c.04.26.07.52.07.8,0,1.22-.41,2.25-1.24,3.07-.83.83-1.85,1.24-3.07,1.24-.28,0-.54-.03-.8-.07ZM105.97,77.99c1.22,0,2.25-.41,3.07-1.24.83-.83,1.24-1.85,1.24-3.07,0-.28-.03-.54-.07-.8l-5.04,5.04c.26.04.52.07.8.07ZM129.04,97.07l-8.6-34.41-7.15,7.15,7.35,29.31c.14,1.44.22,2.12.22,2.05-.07,2.01-.83,3.68-2.26,5.01-1.44,1.33-3.16,1.99-5.17,1.99-1.37,0-2.6-.36-3.72-1.08-1.11-.72-1.96-1.69-2.53-2.91l-3.02-6.14c-1.15-2.16-2.77-3.88-4.85-5.17-2.08-1.29-4.35-1.94-6.79-1.94h-.33l-8.62,8.62h8.95c.79,0,1.55.18,2.26.54.72.36,1.26.9,1.62,1.62l3.02,6.25c1.29,2.73,3.23,4.89,5.82,6.47,2.59,1.58,5.39,2.37,8.41,2.37,4.38,0,8.14-1.53,11.27-4.58,3.13-3.05,4.69-6.77,4.69-11.16,0-.65-.05-1.31-.16-1.99s-.23-1.35-.38-1.99ZM43.77,102.35c-.07-.42-.12-.84-.12-1.29,0-.86.07-1.51.22-1.94l9.06-36.11c.43-1.94,1.42-3.52,2.96-4.74,1.54-1.22,3.32-1.83,5.34-1.83h28.46l8.62-8.62h-37.09c-3.95,0-7.47,1.2-10.56,3.61-3.09,2.41-5.14,5.55-6.14,9.43l-9.06,36.22c-.14.65-.25,1.29-.32,1.94-.07.65-.11,1.29-.11,1.94.1,2.92.85,5.55,2.24,7.9l6.5-6.5ZM74.7,70.45h-4.31v-4.31c0-.93-.31-1.71-.92-2.32-.61-.61-1.38-.92-2.32-.92s-1.71.31-2.32.92c-.61.61-.92,1.38-.92,2.32v4.31h-4.31c-.93,0-1.71.31-2.32.92s-.92,1.38-.92,2.32.31,1.71.92,2.32c.61.61,1.38.92,2.32.92h4.31v4.31c0,.31.05.59.11.86l11.53-11.53c-.27-.07-.56-.11-.86-.11ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM5,82.3c0,19.83,7.51,37.93,19.82,51.63L133.93,24.83c-13.7-12.32-31.8-19.83-51.63-19.83C39.68,5,5,39.68,5,82.3ZM159.61,82.3c0-19.83-7.51-37.93-19.83-51.63L30.68,139.78c13.7,12.32,31.8,19.83,51.63,19.83,42.63,0,77.3-34.68,77.3-77.3Z",
|
|
1810
|
-
|
|
1812
|
+
strokeWidth: "0"
|
|
1811
1813
|
}
|
|
1812
1814
|
) })
|
|
1813
1815
|
}
|
|
@@ -1826,7 +1828,7 @@ const se = () => {
|
|
|
1826
1828
|
"path",
|
|
1827
1829
|
{
|
|
1828
1830
|
d: "M50.88,116.8c-4.31,0-8-1.55-11.05-4.64-3.05-3.09-4.65-6.83-4.8-11.21,0-.65.04-1.29.11-1.94s.18-1.29.32-1.94l9.06-36.22c1.01-3.88,3.05-7.03,6.14-9.43s6.61-3.61,10.56-3.61h42.04c3.95,0,7.47,1.2,10.56,3.61s5.14,5.55,6.14,9.43l9.06,36.22c.14.65.27,1.31.38,1.99s.16,1.35.16,1.99c0,4.38-1.56,8.1-4.69,11.16s-6.88,4.58-11.27,4.58c-3.02,0-5.82-.79-8.41-2.37s-4.53-3.74-5.82-6.47l-3.02-6.25c-.36-.72-.9-1.26-1.62-1.62s-1.47-.54-2.26-.54h-20.48c-.79,0-1.55.18-2.26.54s-1.26.9-1.62,1.62l-3.02,6.25c-1.29,2.73-3.23,4.89-5.82,6.47s-5.39,2.37-8.41,2.37ZM51.2,108.18c1.37,0,2.61-.36,3.72-1.08,1.11-.72,1.96-1.69,2.53-2.91l3.02-6.14c1.08-2.23,2.66-3.97,4.74-5.23s4.35-1.89,6.79-1.89h20.48c2.44,0,4.71.65,6.79,1.94s3.7,3.02,4.85,5.17l3.02,6.14c.57,1.22,1.42,2.19,2.53,2.91,1.11.72,2.35,1.08,3.72,1.08,2.01,0,3.74-.66,5.17-1.99,1.44-1.33,2.19-3,2.26-5.01,0,.07-.07-.61-.22-2.05l-9.06-36.11c-.5-1.94-1.51-3.52-3.02-4.74s-3.27-1.83-5.28-1.83h-42.04c-2.01,0-3.79.61-5.34,1.83s-2.53,2.8-2.96,4.74l-9.06,36.11c-.14.43-.22,1.08-.22,1.94,0,2.01.74,3.7,2.21,5.07,1.47,1.37,3.25,2.05,5.34,2.05ZM88.72,77.99c1.22,0,2.25-.41,3.07-1.24s1.24-1.85,1.24-3.07-.41-2.25-1.24-3.07-1.85-1.24-3.07-1.24-2.25.41-3.07,1.24c-.83.83-1.24,1.85-1.24,3.07s.41,2.25,1.24,3.07c.83.83,1.85,1.24,3.07,1.24ZM97.34,69.37c1.22,0,2.25-.41,3.07-1.24s1.24-1.85,1.24-3.07-.41-2.25-1.24-3.07-1.85-1.24-3.07-1.24-2.25.41-3.07,1.24-1.24,1.85-1.24,3.07.41,2.25,1.24,3.07,1.85,1.24,3.07,1.24ZM97.34,86.62c1.22,0,2.25-.41,3.07-1.24s1.24-1.85,1.24-3.07-.41-2.25-1.24-3.07c-.83-.83-1.85-1.24-3.07-1.24s-2.25.41-3.07,1.24c-.83.83-1.24,1.85-1.24,3.07s.41,2.25,1.24,3.07,1.85,1.24,3.07,1.24ZM105.97,77.99c1.22,0,2.25-.41,3.07-1.24s1.24-1.85,1.24-3.07-.41-2.25-1.24-3.07-1.85-1.24-3.07-1.24-2.25.41-3.07,1.24-1.24,1.85-1.24,3.07.41,2.25,1.24,3.07,1.85,1.24,3.07,1.24ZM67.16,84.46c.93,0,1.71-.31,2.32-.92s.92-1.38.92-2.32v-4.31h4.31c.93,0,1.71-.31,2.32-.92s.92-1.38.92-2.32-.31-1.71-.92-2.32-1.38-.92-2.32-.92h-4.31v-4.31c0-.93-.31-1.71-.92-2.32s-1.38-.92-2.32-.92-1.71.31-2.32.92-.92,1.38-.92,2.32v4.31h-4.31c-.93,0-1.71.31-2.32.92s-.92,1.38-.92,2.32.31,1.71.92,2.32,1.38.92,2.32.92h4.31v4.31c0,.93.31,1.71.92,2.32s1.38.92,2.32.92ZM82.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",
|
|
1829
|
-
|
|
1831
|
+
strokeWidth: "0"
|
|
1830
1832
|
}
|
|
1831
1833
|
) })
|
|
1832
1834
|
}
|
|
@@ -1835,12 +1837,12 @@ const se = () => {
|
|
|
1835
1837
|
active: t,
|
|
1836
1838
|
disabled: s
|
|
1837
1839
|
}
|
|
1838
|
-
),
|
|
1840
|
+
), N2 = ({
|
|
1839
1841
|
active: t,
|
|
1840
1842
|
className: e = "",
|
|
1841
1843
|
disabled: s
|
|
1842
1844
|
}) => /* @__PURE__ */ o.jsx(
|
|
1843
|
-
|
|
1845
|
+
Z,
|
|
1844
1846
|
{
|
|
1845
1847
|
ActiveImage: (
|
|
1846
1848
|
/* icon-down-active.svg */
|
|
@@ -1884,12 +1886,12 @@ const se = () => {
|
|
|
1884
1886
|
active: t,
|
|
1885
1887
|
disabled: s
|
|
1886
1888
|
}
|
|
1887
|
-
),
|
|
1889
|
+
), e8 = ({
|
|
1888
1890
|
active: t,
|
|
1889
1891
|
className: e = "",
|
|
1890
1892
|
disabled: s
|
|
1891
1893
|
}) => /* @__PURE__ */ o.jsx(
|
|
1892
|
-
|
|
1894
|
+
Z,
|
|
1893
1895
|
{
|
|
1894
1896
|
ActiveImage: (
|
|
1895
1897
|
/* icon-elipses-active.svg */
|
|
@@ -1933,12 +1935,12 @@ const se = () => {
|
|
|
1933
1935
|
active: t,
|
|
1934
1936
|
disabled: s
|
|
1935
1937
|
}
|
|
1936
|
-
),
|
|
1938
|
+
), t8 = ({
|
|
1937
1939
|
active: t,
|
|
1938
1940
|
className: e = "",
|
|
1939
1941
|
disabled: s
|
|
1940
1942
|
}) => /* @__PURE__ */ o.jsx(
|
|
1941
|
-
|
|
1943
|
+
Z,
|
|
1942
1944
|
{
|
|
1943
1945
|
ActiveImage: (
|
|
1944
1946
|
/* icon-flag-active.svg */
|
|
@@ -1982,12 +1984,12 @@ const se = () => {
|
|
|
1982
1984
|
active: t,
|
|
1983
1985
|
disabled: s
|
|
1984
1986
|
}
|
|
1985
|
-
),
|
|
1987
|
+
), o8 = ({
|
|
1986
1988
|
active: t,
|
|
1987
1989
|
className: e = "",
|
|
1988
1990
|
disabled: s
|
|
1989
1991
|
}) => /* @__PURE__ */ o.jsx(
|
|
1990
|
-
|
|
1992
|
+
Z,
|
|
1991
1993
|
{
|
|
1992
1994
|
ActiveImage: (
|
|
1993
1995
|
/* /Users/hvolmer/Downloads/SVG/icon-gear-active.svg */
|
|
@@ -2031,12 +2033,12 @@ const se = () => {
|
|
|
2031
2033
|
active: t,
|
|
2032
2034
|
disabled: s
|
|
2033
2035
|
}
|
|
2034
|
-
),
|
|
2036
|
+
), s8 = ({
|
|
2035
2037
|
active: t,
|
|
2036
2038
|
className: e = "",
|
|
2037
2039
|
disabled: s
|
|
2038
2040
|
}) => /* @__PURE__ */ o.jsx(
|
|
2039
|
-
|
|
2041
|
+
Z,
|
|
2040
2042
|
{
|
|
2041
2043
|
ActiveImage: (
|
|
2042
2044
|
/* icon-glass-active.svg */
|
|
@@ -2080,14 +2082,14 @@ const se = () => {
|
|
|
2080
2082
|
active: t,
|
|
2081
2083
|
disabled: s
|
|
2082
2084
|
}
|
|
2083
|
-
),
|
|
2085
|
+
), n8 = ({
|
|
2084
2086
|
active: t,
|
|
2085
2087
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
2086
2088
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
2087
2089
|
className: e = "",
|
|
2088
2090
|
disabled: s
|
|
2089
2091
|
}) => /* @__PURE__ */ o.jsx(
|
|
2090
|
-
|
|
2092
|
+
Z,
|
|
2091
2093
|
{
|
|
2092
2094
|
ActiveImage: (
|
|
2093
2095
|
/* icon-hdmi-active.svg */
|
|
@@ -2149,12 +2151,12 @@ const se = () => {
|
|
|
2149
2151
|
active: t,
|
|
2150
2152
|
disabled: s
|
|
2151
2153
|
}
|
|
2152
|
-
),
|
|
2154
|
+
), r8 = ({
|
|
2153
2155
|
active: t,
|
|
2154
2156
|
className: e = "",
|
|
2155
2157
|
disabled: s
|
|
2156
2158
|
}) => /* @__PURE__ */ o.jsx(
|
|
2157
|
-
|
|
2159
|
+
Z,
|
|
2158
2160
|
{
|
|
2159
2161
|
ActiveImage: (
|
|
2160
2162
|
/* icon-laptop-active.svg */
|
|
@@ -2198,12 +2200,12 @@ const se = () => {
|
|
|
2198
2200
|
active: t,
|
|
2199
2201
|
disabled: s
|
|
2200
2202
|
}
|
|
2201
|
-
),
|
|
2203
|
+
), c8 = ({
|
|
2202
2204
|
active: t,
|
|
2203
2205
|
className: e = "",
|
|
2204
2206
|
disabled: s
|
|
2205
2207
|
}) => /* @__PURE__ */ o.jsx(
|
|
2206
|
-
|
|
2208
|
+
Z,
|
|
2207
2209
|
{
|
|
2208
2210
|
ActiveImage: (
|
|
2209
2211
|
/* icon-left-active.svg */
|
|
@@ -2247,12 +2249,12 @@ const se = () => {
|
|
|
2247
2249
|
active: t,
|
|
2248
2250
|
disabled: s
|
|
2249
2251
|
}
|
|
2250
|
-
),
|
|
2252
|
+
), l8 = ({
|
|
2251
2253
|
active: t,
|
|
2252
2254
|
className: e = "",
|
|
2253
2255
|
disabled: s
|
|
2254
2256
|
}) => /* @__PURE__ */ o.jsx(
|
|
2255
|
-
|
|
2257
|
+
Z,
|
|
2256
2258
|
{
|
|
2257
2259
|
ActiveImage: (
|
|
2258
2260
|
/* icon-light-active.svg */
|
|
@@ -2296,12 +2298,12 @@ const se = () => {
|
|
|
2296
2298
|
active: t,
|
|
2297
2299
|
disabled: s
|
|
2298
2300
|
}
|
|
2299
|
-
),
|
|
2301
|
+
), i8 = ({
|
|
2300
2302
|
active: t,
|
|
2301
2303
|
className: e = "",
|
|
2302
2304
|
disabled: s
|
|
2303
2305
|
}) => /* @__PURE__ */ o.jsx(
|
|
2304
|
-
|
|
2306
|
+
Z,
|
|
2305
2307
|
{
|
|
2306
2308
|
ActiveImage: (
|
|
2307
2309
|
/* icon-moon-active.svg */
|
|
@@ -2345,12 +2347,12 @@ const se = () => {
|
|
|
2345
2347
|
active: t,
|
|
2346
2348
|
disabled: s
|
|
2347
2349
|
}
|
|
2348
|
-
),
|
|
2350
|
+
), a8 = ({
|
|
2349
2351
|
active: t,
|
|
2350
2352
|
className: e = "",
|
|
2351
2353
|
disabled: s
|
|
2352
2354
|
}) => /* @__PURE__ */ o.jsx(
|
|
2353
|
-
|
|
2355
|
+
Z,
|
|
2354
2356
|
{
|
|
2355
2357
|
ActiveImage: (
|
|
2356
2358
|
/* icon-playstation-active.svg */
|
|
@@ -2367,12 +2369,12 @@ const se = () => {
|
|
|
2367
2369
|
active: t,
|
|
2368
2370
|
disabled: s
|
|
2369
2371
|
}
|
|
2370
|
-
),
|
|
2372
|
+
), u8 = ({
|
|
2371
2373
|
active: t,
|
|
2372
2374
|
className: e = "",
|
|
2373
2375
|
disabled: s
|
|
2374
2376
|
}) => /* @__PURE__ */ o.jsx(
|
|
2375
|
-
|
|
2377
|
+
Z,
|
|
2376
2378
|
{
|
|
2377
2379
|
ActiveImage: (
|
|
2378
2380
|
/* icon-podium-active.svg */
|
|
@@ -2416,12 +2418,12 @@ const se = () => {
|
|
|
2416
2418
|
active: t,
|
|
2417
2419
|
disabled: s
|
|
2418
2420
|
}
|
|
2419
|
-
),
|
|
2421
|
+
), d8 = ({
|
|
2420
2422
|
active: t,
|
|
2421
2423
|
className: e = "",
|
|
2422
2424
|
disabled: s
|
|
2423
2425
|
}) => /* @__PURE__ */ o.jsx(
|
|
2424
|
-
|
|
2426
|
+
Z,
|
|
2425
2427
|
{
|
|
2426
2428
|
ActiveImage: (
|
|
2427
2429
|
/* icon-power-active.svg */
|
|
@@ -2465,12 +2467,12 @@ const se = () => {
|
|
|
2465
2467
|
active: t,
|
|
2466
2468
|
disabled: s
|
|
2467
2469
|
}
|
|
2468
|
-
),
|
|
2470
|
+
), h8 = ({
|
|
2469
2471
|
active: t,
|
|
2470
2472
|
className: e = "",
|
|
2471
2473
|
disabled: s
|
|
2472
2474
|
}) => /* @__PURE__ */ o.jsx(
|
|
2473
|
-
|
|
2475
|
+
Z,
|
|
2474
2476
|
{
|
|
2475
2477
|
ActiveImage: (
|
|
2476
2478
|
/* icon-privacy-active.svg */
|
|
@@ -2514,12 +2516,12 @@ const se = () => {
|
|
|
2514
2516
|
active: t,
|
|
2515
2517
|
disabled: s
|
|
2516
2518
|
}
|
|
2517
|
-
),
|
|
2519
|
+
), v8 = ({
|
|
2518
2520
|
active: t,
|
|
2519
2521
|
className: e = "",
|
|
2520
2522
|
disabled: s
|
|
2521
2523
|
}) => /* @__PURE__ */ o.jsx(
|
|
2522
|
-
|
|
2524
|
+
Z,
|
|
2523
2525
|
{
|
|
2524
2526
|
ActiveImage: (
|
|
2525
2527
|
/* icon-question-active.svg */
|
|
@@ -2563,12 +2565,12 @@ const se = () => {
|
|
|
2563
2565
|
active: t,
|
|
2564
2566
|
disabled: s
|
|
2565
2567
|
}
|
|
2566
|
-
),
|
|
2568
|
+
), g8 = ({
|
|
2567
2569
|
active: t,
|
|
2568
2570
|
className: e = "",
|
|
2569
2571
|
disabled: s
|
|
2570
2572
|
}) => /* @__PURE__ */ o.jsx(
|
|
2571
|
-
|
|
2573
|
+
Z,
|
|
2572
2574
|
{
|
|
2573
2575
|
ActiveImage: (
|
|
2574
2576
|
/* icon-right-active.svg */
|
|
@@ -2612,14 +2614,14 @@ const se = () => {
|
|
|
2612
2614
|
active: t,
|
|
2613
2615
|
disabled: s
|
|
2614
2616
|
}
|
|
2615
|
-
),
|
|
2617
|
+
), f8 = ({
|
|
2616
2618
|
active: t,
|
|
2617
2619
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
2618
2620
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
2619
2621
|
className: e = "",
|
|
2620
2622
|
disabled: s
|
|
2621
2623
|
}) => /* @__PURE__ */ o.jsx(
|
|
2622
|
-
|
|
2624
|
+
Z,
|
|
2623
2625
|
{
|
|
2624
2626
|
ActiveImage: (
|
|
2625
2627
|
/* icon-roomPC-active.svg */
|
|
@@ -2634,7 +2636,7 @@ const se = () => {
|
|
|
2634
2636
|
"path",
|
|
2635
2637
|
{
|
|
2636
2638
|
d: "M78.42,76.11v.67c0,1.66-1.34,3-3,3h-28.5c-1.66,0-3-1.34-3-3v-.67c0-1.66,1.34-3,3-3h28.5c1.66,0,3,1.34,3,3ZM75.42,63.11h-28.5c-1.66,0-3,1.34-3,3v.67c0,1.66,1.34,3,3,3h28.5c1.66,0,3-1.34,3-3v-.67c0-1.66-1.34-3-3-3ZM74.67,110.78c-2.07,0-3.75,1.68-3.75,3.75s1.68,3.75,3.75,3.75,3.75-1.68,3.75-3.75-1.68-3.75-3.75-3.75ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM82.63,60.68c0-2.15-1.74-3.89-3.89-3.89h-34.83c-2.15,0-3.89,1.74-3.89,3.89v59.64c0,2.15,1.74,3.89,3.89,3.89h34.83c2.15,0,3.89-1.74,3.89-3.89v-59.64ZM124.59,44.82c0-2.44-1.98-4.43-4.43-4.43H54.78c-2.44,0-4.43,1.98-4.43,4.43v6.96h6.06v-1.66c0-1.47,1.19-2.66,2.66-2.66h56.8c1.47,0,2.66,1.19,2.66,2.66v32.53c0,1.47-1.19,2.66-2.66,2.66h-28.24v20.48h21.98c0-4.6-5.41-11.57-13.23-13.41h23.77c2.44,0,4.43-1.98,4.43-4.43v-43.13Z",
|
|
2637
|
-
|
|
2639
|
+
strokeWidth: "0"
|
|
2638
2640
|
}
|
|
2639
2641
|
) })
|
|
2640
2642
|
}
|
|
@@ -2653,7 +2655,7 @@ const se = () => {
|
|
|
2653
2655
|
"path",
|
|
2654
2656
|
{
|
|
2655
2657
|
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.83,133.93c-12.32-13.7-19.83-31.8-19.83-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.82,31.8,19.82,51.63,0,42.63-34.68,77.3-77.3,77.3ZM56.41,51.79h-6.06v-6.96c0-2.44,1.98-4.43,4.43-4.43h50.95l-7.07,7.07h-39.58c-1.47,0-2.66,1.19-2.66,2.66v1.66ZM40.02,106.1v-45.42c0-2.15,1.74-3.89,3.89-3.89h34.83c2.15,0,3.89,1.74,3.89,3.89v2.81l-4.45,4.45c.15-.36.23-.75.23-1.16v-.67c0-1.66-1.34-3-3-3h-28.5c-1.66,0-3,1.34-3,3v.67c0,1.66,1.34,3,3,3h28.5c.41,0,.8-.08,1.16-.23l-3.57,3.57h-26.09c-1.66,0-3,1.34-3,3v.67c0,1.66,1.34,3,3,3h19.43l-26.32,26.32ZM124.59,58.5v29.46c0,2.44-1.98,4.43-4.43,4.43h-23.77c7.81,1.84,13.23,8.81,13.23,13.41h-21.98v-10.34l10.15-10.15h18.09c1.47,0,2.66-1.19,2.66-2.66v-18.09l6.06-6.06ZM58.88,124.21h19.86c2.15,0,3.89-1.74,3.89-3.89v-19.86l-23.75,23.75ZM74.67,118.28c-2.07,0-3.75-1.68-3.75-3.75s1.68-3.75,3.75-3.75,3.75,1.68,3.75,3.75-1.68,3.75-3.75,3.75Z",
|
|
2656
|
-
|
|
2658
|
+
strokeWidth: "0"
|
|
2657
2659
|
}
|
|
2658
2660
|
) })
|
|
2659
2661
|
}
|
|
@@ -2672,7 +2674,7 @@ const se = () => {
|
|
|
2672
2674
|
"path",
|
|
2673
2675
|
{
|
|
2674
2676
|
d: "M78.74,56.79h-34.83c-2.15,0-3.89,1.74-3.89,3.89v59.64c0,2.15,1.74,3.89,3.89,3.89h34.83c2.15,0,3.89-1.74,3.89-3.89v-59.64c0-2.15-1.74-3.89-3.89-3.89ZM74.67,118.28c-2.07,0-3.75-1.68-3.75-3.75s1.68-3.75,3.75-3.75,3.75,1.68,3.75,3.75-1.68,3.75-3.75,3.75ZM78.42,76.78c0,1.66-1.34,3-3,3h-28.5c-1.66,0-3-1.34-3-3v-.67c0-1.66,1.34-3,3-3h28.5c1.66,0,3,1.34,3,3v.67ZM78.42,66.78c0,1.66-1.34,3-3,3h-28.5c-1.66,0-3-1.34-3-3v-.67c0-1.66,1.34-3,3-3h28.5c1.66,0,3,1.34,3,3v.67ZM124.59,44.82v43.13c0,2.44-1.98,4.43-4.43,4.43h-23.77c7.81,1.84,13.23,8.81,13.23,13.41h-21.98v-20.48h28.24c1.47,0,2.66-1.19,2.66-2.66v-32.53c0-1.47-1.19-2.66-2.66-2.66h-56.8c-1.47,0-2.66,1.19-2.66,2.66v1.66h-6.06v-6.96c0-2.44,1.98-4.43,4.43-4.43h65.38c2.44,0,4.43,1.98,4.43,4.43ZM82.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",
|
|
2675
|
-
|
|
2677
|
+
strokeWidth: "0"
|
|
2676
2678
|
}
|
|
2677
2679
|
) }) })
|
|
2678
2680
|
}
|
|
@@ -2681,12 +2683,12 @@ const se = () => {
|
|
|
2681
2683
|
active: t,
|
|
2682
2684
|
disabled: s
|
|
2683
2685
|
}
|
|
2684
|
-
),
|
|
2686
|
+
), w8 = ({
|
|
2685
2687
|
active: t,
|
|
2686
2688
|
className: e = "",
|
|
2687
2689
|
disabled: s
|
|
2688
2690
|
}) => /* @__PURE__ */ o.jsx(
|
|
2689
|
-
|
|
2691
|
+
Z,
|
|
2690
2692
|
{
|
|
2691
2693
|
ActiveImage: (
|
|
2692
2694
|
/* icon-shade-active.svg */
|
|
@@ -2730,12 +2732,12 @@ const se = () => {
|
|
|
2730
2732
|
active: t,
|
|
2731
2733
|
disabled: s
|
|
2732
2734
|
}
|
|
2733
|
-
),
|
|
2735
|
+
), p8 = ({
|
|
2734
2736
|
active: t,
|
|
2735
2737
|
className: e = "",
|
|
2736
2738
|
disabled: s
|
|
2737
2739
|
}) => /* @__PURE__ */ o.jsx(
|
|
2738
|
-
|
|
2740
|
+
Z,
|
|
2739
2741
|
{
|
|
2740
2742
|
ActiveImage: (
|
|
2741
2743
|
/* icon-sun-active.svg */
|
|
@@ -2779,12 +2781,12 @@ const se = () => {
|
|
|
2779
2781
|
active: t,
|
|
2780
2782
|
disabled: s
|
|
2781
2783
|
}
|
|
2782
|
-
),
|
|
2784
|
+
), x8 = ({
|
|
2783
2785
|
active: t,
|
|
2784
2786
|
className: e = "",
|
|
2785
2787
|
disabled: s
|
|
2786
2788
|
}) => /* @__PURE__ */ o.jsx(
|
|
2787
|
-
|
|
2789
|
+
Z,
|
|
2788
2790
|
{
|
|
2789
2791
|
ActiveImage: (
|
|
2790
2792
|
/* icon-up-active.svg */
|
|
@@ -2828,12 +2830,12 @@ const se = () => {
|
|
|
2828
2830
|
active: t,
|
|
2829
2831
|
disabled: s
|
|
2830
2832
|
}
|
|
2831
|
-
),
|
|
2833
|
+
), m8 = ({
|
|
2832
2834
|
active: t,
|
|
2833
2835
|
className: e = "",
|
|
2834
2836
|
disabled: s
|
|
2835
2837
|
}) => /* @__PURE__ */ o.jsx(
|
|
2836
|
-
|
|
2838
|
+
Z,
|
|
2837
2839
|
{
|
|
2838
2840
|
ActiveImage: (
|
|
2839
2841
|
/* icon-volDown-active.svg */
|
|
@@ -2877,12 +2879,12 @@ const se = () => {
|
|
|
2877
2879
|
active: t,
|
|
2878
2880
|
disabled: s
|
|
2879
2881
|
}
|
|
2880
|
-
),
|
|
2882
|
+
), M8 = ({
|
|
2881
2883
|
active: t,
|
|
2882
2884
|
className: e = "",
|
|
2883
2885
|
disabled: s
|
|
2884
2886
|
}) => /* @__PURE__ */ o.jsx(
|
|
2885
|
-
|
|
2887
|
+
Z,
|
|
2886
2888
|
{
|
|
2887
2889
|
ActiveImage: (
|
|
2888
2890
|
/* icon-volMute-active.svg */
|
|
@@ -2926,12 +2928,12 @@ const se = () => {
|
|
|
2926
2928
|
active: t,
|
|
2927
2929
|
disabled: s
|
|
2928
2930
|
}
|
|
2929
|
-
),
|
|
2931
|
+
), Z8 = ({
|
|
2930
2932
|
active: t,
|
|
2931
2933
|
className: e = "",
|
|
2932
2934
|
disabled: s
|
|
2933
2935
|
}) => /* @__PURE__ */ o.jsx(
|
|
2934
|
-
|
|
2936
|
+
Z,
|
|
2935
2937
|
{
|
|
2936
2938
|
ActiveImage: (
|
|
2937
2939
|
/* icon-volUp-active.svg */
|
|
@@ -2975,12 +2977,12 @@ const se = () => {
|
|
|
2975
2977
|
active: t,
|
|
2976
2978
|
disabled: s
|
|
2977
2979
|
}
|
|
2978
|
-
),
|
|
2980
|
+
), j8 = ({
|
|
2979
2981
|
active: t,
|
|
2980
2982
|
className: e = "",
|
|
2981
2983
|
disabled: s
|
|
2982
2984
|
}) => /* @__PURE__ */ o.jsx(
|
|
2983
|
-
|
|
2985
|
+
Z,
|
|
2984
2986
|
{
|
|
2985
2987
|
ActiveImage: (
|
|
2986
2988
|
/* icon-wireless-active.svg */
|
|
@@ -3024,12 +3026,12 @@ const se = () => {
|
|
|
3024
3026
|
active: t,
|
|
3025
3027
|
disabled: s
|
|
3026
3028
|
}
|
|
3027
|
-
),
|
|
3029
|
+
), C8 = ({
|
|
3028
3030
|
active: t,
|
|
3029
3031
|
className: e = "",
|
|
3030
3032
|
disabled: s
|
|
3031
3033
|
}) => /* @__PURE__ */ o.jsx(
|
|
3032
|
-
|
|
3034
|
+
Z,
|
|
3033
3035
|
{
|
|
3034
3036
|
ActiveImage: (
|
|
3035
3037
|
/* icon-x-active.svg */
|
|
@@ -3073,12 +3075,12 @@ const se = () => {
|
|
|
3073
3075
|
active: t,
|
|
3074
3076
|
disabled: s
|
|
3075
3077
|
}
|
|
3076
|
-
),
|
|
3078
|
+
), S8 = ({
|
|
3077
3079
|
active: t,
|
|
3078
3080
|
className: e = "",
|
|
3079
3081
|
disabled: s
|
|
3080
3082
|
}) => /* @__PURE__ */ o.jsx(
|
|
3081
|
-
|
|
3083
|
+
Z,
|
|
3082
3084
|
{
|
|
3083
3085
|
ActiveImage: (
|
|
3084
3086
|
/* icon-xbox-active.svg */
|
|
@@ -3122,12 +3124,12 @@ const se = () => {
|
|
|
3122
3124
|
active: t,
|
|
3123
3125
|
disabled: s
|
|
3124
3126
|
}
|
|
3125
|
-
),
|
|
3127
|
+
), b8 = ({
|
|
3126
3128
|
active: t,
|
|
3127
3129
|
className: e = "",
|
|
3128
3130
|
disabled: s
|
|
3129
3131
|
}) => /* @__PURE__ */ o.jsx(
|
|
3130
|
-
|
|
3132
|
+
Z,
|
|
3131
3133
|
{
|
|
3132
3134
|
ActiveImage: (
|
|
3133
3135
|
/* icon-mic-active.svg */
|
|
@@ -3171,96 +3173,96 @@ const se = () => {
|
|
|
3171
3173
|
active: t,
|
|
3172
3174
|
disabled: s
|
|
3173
3175
|
}
|
|
3174
|
-
),
|
|
3175
|
-
Alert:
|
|
3176
|
-
Camera:
|
|
3177
|
-
DownArrow:
|
|
3178
|
-
Ban:
|
|
3179
|
-
Check:
|
|
3180
|
-
Controller:
|
|
3181
|
-
Elipses:
|
|
3182
|
-
Flag:
|
|
3183
|
-
Gear:
|
|
3184
|
-
Glass:
|
|
3185
|
-
Hdmi:
|
|
3186
|
-
Laptop:
|
|
3187
|
-
LeftArrow:
|
|
3188
|
-
Light:
|
|
3189
|
-
Mic:
|
|
3190
|
-
Moon:
|
|
3191
|
-
Playstation:
|
|
3192
|
-
Podium:
|
|
3193
|
-
Power:
|
|
3194
|
-
Privacy:
|
|
3195
|
-
Question:
|
|
3196
|
-
RightArrow:
|
|
3197
|
-
RoomPC:
|
|
3198
|
-
Shade:
|
|
3199
|
-
Sun:
|
|
3200
|
-
UpArrow:
|
|
3201
|
-
VolDown:
|
|
3202
|
-
VolMute:
|
|
3203
|
-
VolUp:
|
|
3204
|
-
Wireless:
|
|
3205
|
-
X:
|
|
3206
|
-
Xbox:
|
|
3176
|
+
), I8 = {
|
|
3177
|
+
Alert: Y2,
|
|
3178
|
+
Camera: J2,
|
|
3179
|
+
DownArrow: N2,
|
|
3180
|
+
Ban: z2,
|
|
3181
|
+
Check: X2,
|
|
3182
|
+
Controller: Q2,
|
|
3183
|
+
Elipses: e8,
|
|
3184
|
+
Flag: t8,
|
|
3185
|
+
Gear: o8,
|
|
3186
|
+
Glass: s8,
|
|
3187
|
+
Hdmi: n8,
|
|
3188
|
+
Laptop: r8,
|
|
3189
|
+
LeftArrow: c8,
|
|
3190
|
+
Light: l8,
|
|
3191
|
+
Mic: b8,
|
|
3192
|
+
Moon: i8,
|
|
3193
|
+
Playstation: a8,
|
|
3194
|
+
Podium: u8,
|
|
3195
|
+
Power: d8,
|
|
3196
|
+
Privacy: h8,
|
|
3197
|
+
Question: v8,
|
|
3198
|
+
RightArrow: g8,
|
|
3199
|
+
RoomPC: f8,
|
|
3200
|
+
Shade: w8,
|
|
3201
|
+
Sun: p8,
|
|
3202
|
+
UpArrow: x8,
|
|
3203
|
+
VolDown: m8,
|
|
3204
|
+
VolMute: M8,
|
|
3205
|
+
VolUp: Z8,
|
|
3206
|
+
Wireless: j8,
|
|
3207
|
+
X: C8,
|
|
3208
|
+
Xbox: S8
|
|
3207
3209
|
};
|
|
3208
|
-
function
|
|
3210
|
+
function se({
|
|
3209
3211
|
name: t,
|
|
3210
|
-
iconsDictionary: e =
|
|
3212
|
+
iconsDictionary: e = I8,
|
|
3211
3213
|
...s
|
|
3212
3214
|
}) {
|
|
3213
3215
|
const r = e[t] ?? null;
|
|
3214
|
-
return r || console.error(`Icon ${t} not found in dictionary`), /* @__PURE__ */ o.jsx(
|
|
3216
|
+
return r || console.error(`Icon ${t} not found in dictionary`), /* @__PURE__ */ o.jsx(q2, { multiIcon: r, ...s });
|
|
3215
3217
|
}
|
|
3216
|
-
const
|
|
3217
|
-
grid:
|
|
3218
|
-
header:
|
|
3219
|
-
content:
|
|
3220
|
-
footer:
|
|
3221
|
-
volume:
|
|
3222
|
-
},
|
|
3218
|
+
const y8 = "_grid_1cmpp_1", R8 = "_header_1cmpp_11", E8 = "_content_1cmpp_17", _8 = "_footer_1cmpp_23", L8 = "_volume_1cmpp_29", a1 = {
|
|
3219
|
+
grid: y8,
|
|
3220
|
+
header: R8,
|
|
3221
|
+
content: E8,
|
|
3222
|
+
footer: _8,
|
|
3223
|
+
volume: L8
|
|
3224
|
+
}, ne = ({ header: t, footer: e, content: s, volume: r, showVolume: c }) => /* @__PURE__ */ o.jsxs("div", { className: a1.grid, children: [
|
|
3223
3225
|
/* @__PURE__ */ o.jsx("div", { className: a1.header, children: t }),
|
|
3224
3226
|
/* @__PURE__ */ o.jsx("div", { className: a1.content, children: s }),
|
|
3225
3227
|
c && /* @__PURE__ */ o.jsx("div", { className: a1.volume, children: r }),
|
|
3226
3228
|
/* @__PURE__ */ o.jsx("div", { className: a1.footer, children: e })
|
|
3227
|
-
] }), T8 = "_grid_11w5q_1",
|
|
3229
|
+
] }), T8 = "_grid_11w5q_1", $8 = "_header_11w5q_11", P8 = "_content_11w5q_17", p1 = {
|
|
3228
3230
|
grid: T8,
|
|
3229
|
-
header:
|
|
3230
|
-
content:
|
|
3231
|
+
header: $8,
|
|
3232
|
+
content: P8,
|
|
3231
3233
|
"left-nav": "_left-nav_11w5q_23"
|
|
3232
|
-
},
|
|
3234
|
+
}, re = ({ className: t, header: e, content: s, leftNav: r }) => /* @__PURE__ */ o.jsxs("div", { className: `${t} ${p1.grid}`, children: [
|
|
3233
3235
|
/* @__PURE__ */ o.jsx("div", { className: p1.header, children: e }),
|
|
3234
3236
|
r && /* @__PURE__ */ o.jsx("div", { className: p1.leftNav, children: r }),
|
|
3235
3237
|
/* @__PURE__ */ o.jsx("div", { className: p1.content, children: s })
|
|
3236
|
-
] }),
|
|
3237
|
-
grid:
|
|
3238
|
-
header:
|
|
3239
|
-
content:
|
|
3240
|
-
},
|
|
3238
|
+
] }), D8 = "_grid_1uwfo_1", A8 = "_header_1uwfo_11", B8 = "_content_1uwfo_17", L1 = {
|
|
3239
|
+
grid: D8,
|
|
3240
|
+
header: A8,
|
|
3241
|
+
content: B8
|
|
3242
|
+
}, ce = ({ className: t, header: e, content: s }) => /* @__PURE__ */ o.jsxs("div", { className: `${t} ${L1.grid}`, children: [
|
|
3241
3243
|
/* @__PURE__ */ o.jsx("div", { className: L1.header, children: e }),
|
|
3242
3244
|
/* @__PURE__ */ o.jsx("div", { className: L1.content, children: s })
|
|
3243
3245
|
] });
|
|
3244
|
-
function
|
|
3246
|
+
function le() {
|
|
3245
3247
|
return console.log(location.pathname), location.pathname;
|
|
3246
3248
|
}
|
|
3247
|
-
var
|
|
3248
|
-
class
|
|
3249
|
+
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 || {});
|
|
3250
|
+
class ie {
|
|
3249
3251
|
constructor(e, s) {
|
|
3250
3252
|
V(this, "path");
|
|
3251
3253
|
V(this, "handler");
|
|
3252
3254
|
this.path = e, this.handler = s;
|
|
3253
3255
|
}
|
|
3254
3256
|
}
|
|
3255
|
-
const
|
|
3256
|
-
class
|
|
3257
|
+
const ae = "$off";
|
|
3258
|
+
class ue {
|
|
3257
3259
|
constructor() {
|
|
3258
3260
|
V(this, "name", "");
|
|
3259
3261
|
V(this, "iconUrl", "");
|
|
3260
3262
|
V(this, "channel", "");
|
|
3261
3263
|
}
|
|
3262
3264
|
}
|
|
3263
|
-
class
|
|
3265
|
+
class de {
|
|
3264
3266
|
constructor() {
|
|
3265
3267
|
V(this, "currentShareText");
|
|
3266
3268
|
V(this, "enabled");
|
|
@@ -3268,138 +3270,140 @@ class he {
|
|
|
3268
3270
|
}
|
|
3269
3271
|
}
|
|
3270
3272
|
export {
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3273
|
+
E6 as Clock,
|
|
3274
|
+
O8 as DaysOfWeek,
|
|
3275
|
+
oe as ErrorBox,
|
|
3276
|
+
q2 as IconButton,
|
|
3277
|
+
Y2 as IconMultiAlert,
|
|
3278
|
+
z2 as IconMultiBan,
|
|
3279
|
+
J2 as IconMultiCamera,
|
|
3280
|
+
X2 as IconMultiCheck,
|
|
3281
|
+
Q2 as IconMultiController,
|
|
3282
|
+
N2 as IconMultiDownArrow,
|
|
3283
|
+
e8 as IconMultiElipses,
|
|
3284
|
+
t8 as IconMultiFlag,
|
|
3285
|
+
o8 as IconMultiGear,
|
|
3286
|
+
s8 as IconMultiGlass,
|
|
3287
|
+
n8 as IconMultiHdmi,
|
|
3288
|
+
r8 as IconMultiLaptop,
|
|
3289
|
+
c8 as IconMultiLeftArrow,
|
|
3290
|
+
l8 as IconMultiLight,
|
|
3291
|
+
i8 as IconMultiMoon,
|
|
3292
|
+
a8 as IconMultiPlaystation,
|
|
3293
|
+
u8 as IconMultiPodium,
|
|
3294
|
+
d8 as IconMultiPower,
|
|
3295
|
+
h8 as IconMultiPrivacy,
|
|
3296
|
+
v8 as IconMultiQuestion,
|
|
3297
|
+
g8 as IconMultiRightArrow,
|
|
3298
|
+
f8 as IconMultiRoomPC,
|
|
3299
|
+
w8 as IconMultiShade,
|
|
3300
|
+
p8 as IconMultiSun,
|
|
3301
|
+
x8 as IconMultiUpArrow,
|
|
3302
|
+
m8 as IconMultiVolDown,
|
|
3303
|
+
M8 as IconMultiVolMute,
|
|
3304
|
+
Z8 as IconMultiVolUp,
|
|
3305
|
+
j8 as IconMultiWireless,
|
|
3306
|
+
C8 as IconMultiX,
|
|
3307
|
+
S8 as IconMultiXbox,
|
|
3308
|
+
ne as MainLayout,
|
|
3309
|
+
ie as MessageHandler,
|
|
3310
|
+
x6 as MobileControlProvider,
|
|
3311
|
+
Z as MultiStateIconContainer,
|
|
3312
|
+
se as NamedIconButton,
|
|
3313
|
+
ue as PresetChannel,
|
|
3314
|
+
de as ShareState,
|
|
3315
|
+
re as TechLayout,
|
|
3316
|
+
ce as TechPinLayout,
|
|
3317
|
+
le as getBaseLocation,
|
|
3318
|
+
T1 as httpClient,
|
|
3319
|
+
ae as roomOffSourceKey,
|
|
3320
|
+
M as store,
|
|
3319
3321
|
q as uiActions,
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
|
|
3322
|
+
m2 as uiReducer,
|
|
3323
|
+
K8 as useApiPath,
|
|
3324
|
+
a2 as useAppConfig,
|
|
3325
|
+
i2 as useAppDispatch,
|
|
3326
|
+
w as useAppSelector,
|
|
3327
|
+
M6 as useAvrControl,
|
|
3328
|
+
b2 as useClientId,
|
|
3329
|
+
W2 as useDeviceIBasicVolumeWithFeedback,
|
|
3330
|
+
Z6 as useEndpoint,
|
|
3331
|
+
E2 as useError,
|
|
3332
|
+
J6 as useGetAllDeviceStateFromRoomConfiguration,
|
|
3333
|
+
u2 as useGetAllDevices,
|
|
3334
|
+
f6 as useGetCurrentPopoverIdForGroup,
|
|
3335
|
+
T as useGetDevice,
|
|
3333
3336
|
m6 as useGetIBasicVolumeWithFeedback,
|
|
3334
|
-
|
|
3335
|
-
|
|
3336
|
-
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
|
|
3337
|
+
l6 as useGetRoomDisplayStates,
|
|
3338
|
+
i6 as useGetZoomRoomControllerKey,
|
|
3339
|
+
x3 as useIBasicVolumeWithFeedback,
|
|
3340
|
+
j6 as useIChannelMessenger,
|
|
3341
|
+
C6 as useIColor,
|
|
3342
|
+
S6 as useICommunicationMonitor,
|
|
3343
|
+
b6 as useIDPad,
|
|
3344
|
+
I6 as useIDeviceInfoMessenger,
|
|
3345
|
+
y6 as useIDspPresets,
|
|
3346
|
+
R6 as useIDvr,
|
|
3347
|
+
_6 as useIEssentialsRoomCombiner,
|
|
3348
|
+
m3 as useIHasPowerControl,
|
|
3349
|
+
P1 as useIHasSelectableItems,
|
|
3350
|
+
L6 as useILevelControls,
|
|
3351
|
+
T6 as useILightingScenes,
|
|
3352
|
+
$6 as useIMatrixRouting,
|
|
3353
|
+
P6 as useIMcCiscoCodecUserInterfaceAppControl,
|
|
3354
|
+
D6 as useINumeric,
|
|
3355
|
+
A6 as useIProjectorScreenLiftControl,
|
|
3356
|
+
B6 as useIRoomEventSchedule,
|
|
3357
|
+
Y6 as useIRunDefaultPresentRoute,
|
|
3358
|
+
O6 as useIRunDirectRouteAction,
|
|
3359
|
+
V6 as useIRunRouteAction,
|
|
3360
|
+
k6 as useISetTopBoxControls,
|
|
3361
|
+
U6 as useIShadesOpenCloseStop,
|
|
3359
3362
|
W6 as useIShutdownPromptTimer,
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3363
|
+
F6 as useISwitchedOutput,
|
|
3364
|
+
H6 as useITechPassword,
|
|
3365
|
+
z6 as useITheme,
|
|
3366
|
+
K6 as useITransport,
|
|
3367
|
+
L2 as useInitialize,
|
|
3368
|
+
d6 as useIsTouchpanel,
|
|
3369
|
+
G6 as useMobileControlTouchpanelController,
|
|
3370
|
+
ee as useOverflow,
|
|
3371
|
+
U2 as usePressHoldRelease,
|
|
3372
|
+
r6 as useRoomAdvancedSharingActive,
|
|
3373
|
+
z8 as useRoomAudioControlPointList,
|
|
3374
|
+
e6 as useRoomCodecContentDestinationKey,
|
|
3375
|
+
G8 as useRoomConfiguration,
|
|
3376
|
+
X8 as useRoomDestinationList,
|
|
3377
|
+
J8 as useRoomDestinations,
|
|
3378
|
+
Q8 as useRoomEnvironmentalDevices,
|
|
3379
|
+
X6 as useRoomIBasicVolumeWithFeedback,
|
|
3380
|
+
t6 as useRoomInCall,
|
|
3381
|
+
s6 as useRoomIsCoolingDown,
|
|
3382
|
+
n6 as useRoomIsOn,
|
|
3383
|
+
o6 as useRoomIsWarmingUp,
|
|
3384
|
+
S2 as useRoomKey,
|
|
3385
|
+
j2 as useRoomLevelControls,
|
|
3386
|
+
q8 as useRoomName,
|
|
3387
|
+
N8 as useRoomProgramAudioDestinationKey,
|
|
3388
|
+
c6 as useRoomShareState,
|
|
3389
|
+
Y8 as useRoomSourceList,
|
|
3390
|
+
D1 as useRoomState,
|
|
3391
|
+
Z2 as useRoomVolume,
|
|
3392
|
+
a6 as useRuntimeInfo,
|
|
3393
|
+
te as useScroll,
|
|
3394
|
+
R2 as useServerIsRunningOnProcessorHardware,
|
|
3395
|
+
v6 as useShowIncomingCallModal,
|
|
3396
|
+
g6 as useShowModal,
|
|
3397
|
+
w6 as useShowPopoverById,
|
|
3398
|
+
_2 as useShowReconnect,
|
|
3399
|
+
h6 as useShowShutdownModal,
|
|
3400
|
+
Q6 as useSystemControl,
|
|
3401
|
+
I2 as useSystemUuid,
|
|
3402
|
+
p6 as useTheme,
|
|
3403
|
+
N6 as useTimeAndDate,
|
|
3404
|
+
u6 as useTouchpanelKey,
|
|
3405
|
+
q6 as useTwoWayDisplayBase,
|
|
3406
|
+
y2 as useUserCode,
|
|
3403
3407
|
I as useWebsocketContext,
|
|
3404
|
-
|
|
3408
|
+
C2 as useWsIsConnected
|
|
3405
3409
|
};
|