@pepperdash/mobile-control-react-app-core 1.8.0 → 1.9.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 +1016 -868
- package/dist/mobile-control-react-app-core.umd.js +11 -11
- package/dist/shared/Icons/MultiStateIcons/IconMultiController.d.ts +3 -0
- package/dist/shared/Icons/MultiStateIcons/IconMultiController.d.ts.map +1 -0
- package/dist/shared/Icons/MultiStateIcons/IconMultiRoomPC.d.ts +3 -0
- package/dist/shared/Icons/MultiStateIcons/IconMultiRoomPC.d.ts.map +1 -0
- package/dist/shared/Icons/MultiStateIcons/index.d.ts +2 -0
- package/dist/shared/Icons/MultiStateIcons/index.d.ts.map +1 -1
- package/dist/shared/Icons/iconsDictionary.d.ts +1 -1
- package/dist/shared/Icons/iconsDictionary.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var _ = (t, e,
|
|
4
|
-
import
|
|
5
|
-
import { createSlice as
|
|
6
|
-
import { useSelector as
|
|
7
|
-
import * as
|
|
8
|
-
import
|
|
9
|
-
import { useNavigate as
|
|
1
|
+
var W3 = Object.defineProperty;
|
|
2
|
+
var H3 = (t, e, c) => e in t ? W3(t, e, { enumerable: !0, configurable: !0, writable: !0, value: c }) : t[e] = c;
|
|
3
|
+
var _ = (t, e, c) => (H3(t, typeof e != "symbol" ? e + "" : e, c), c);
|
|
4
|
+
import K3 from "axios";
|
|
5
|
+
import { createSlice as o1, combineReducers as G3, configureStore as n3, createSelector as q3 } from "@reduxjs/toolkit";
|
|
6
|
+
import { useSelector as Y3, useDispatch as J3, Provider as z3 } from "react-redux";
|
|
7
|
+
import * as c3 from "lodash";
|
|
8
|
+
import s3, { createContext as X3, useState as q, useRef as s1, useCallback as u1, useEffect as G, useContext as Q3 } from "react";
|
|
9
|
+
import { useNavigate as N3 } from "react-router-dom";
|
|
10
10
|
const e2 = {
|
|
11
11
|
config: {
|
|
12
12
|
enableDev: !1,
|
|
@@ -17,7 +17,7 @@ const e2 = {
|
|
|
17
17
|
loginMode: "",
|
|
18
18
|
modes: {}
|
|
19
19
|
}
|
|
20
|
-
},
|
|
20
|
+
}, o3 = o1({
|
|
21
21
|
name: "appConfig",
|
|
22
22
|
initialState: e2,
|
|
23
23
|
reducers: {
|
|
@@ -25,33 +25,33 @@ const e2 = {
|
|
|
25
25
|
t.config = e.payload;
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
|
-
}), t2 =
|
|
28
|
+
}), t2 = o3.actions, n2 = o3.reducer, c2 = {}, r3 = o1({
|
|
29
29
|
name: "devices",
|
|
30
|
-
initialState:
|
|
30
|
+
initialState: c2,
|
|
31
31
|
reducers: {
|
|
32
32
|
setDeviceState(t, e) {
|
|
33
|
-
const
|
|
34
|
-
if (!
|
|
33
|
+
const c = e.payload.type, o = c.slice(c.lastIndexOf("/") + 1);
|
|
34
|
+
if (!o)
|
|
35
35
|
return;
|
|
36
|
-
const l = e.payload.content, i = t[
|
|
37
|
-
return t[
|
|
36
|
+
const l = e.payload.content, i = t[o] ?? {}, d = c3.merge(i, l);
|
|
37
|
+
return t[o] = d, t;
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
|
-
}),
|
|
40
|
+
}), s2 = r3.actions, o2 = r3.reducer, r2 = {}, l3 = o1({
|
|
41
41
|
name: "rooms",
|
|
42
|
-
initialState:
|
|
42
|
+
initialState: r2,
|
|
43
43
|
reducers: {
|
|
44
44
|
setRoomState(t, e) {
|
|
45
|
-
const
|
|
46
|
-
if (console.log(
|
|
45
|
+
const c = e.payload.type, o = c.slice(c.lastIndexOf("/") + 1);
|
|
46
|
+
if (console.log(c, o), !o)
|
|
47
47
|
return;
|
|
48
48
|
const l = e.payload.content;
|
|
49
49
|
console.log(l);
|
|
50
|
-
const i = t[
|
|
51
|
-
return t[
|
|
50
|
+
const i = t[o] ?? {}, d = c3.merge(i, l);
|
|
51
|
+
return t[o] = d, console.log(t), t;
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
|
-
}), l2 =
|
|
54
|
+
}), l2 = l3.actions, i2 = l3.reducer, a2 = {
|
|
55
55
|
apiVersion: "",
|
|
56
56
|
serverIsRunningOnProcessorHardware: !1,
|
|
57
57
|
websocket: {
|
|
@@ -70,7 +70,7 @@ const e2 = {
|
|
|
70
70
|
userCode: "",
|
|
71
71
|
qrUrl: ""
|
|
72
72
|
}
|
|
73
|
-
},
|
|
73
|
+
}, i3 = o1({
|
|
74
74
|
name: "runtimeConfig",
|
|
75
75
|
initialState: a2,
|
|
76
76
|
reducers: {
|
|
@@ -96,13 +96,13 @@ const e2 = {
|
|
|
96
96
|
t.roomData.userCode = e.payload.userCode, t.roomData.qrUrl = e.payload.qrUrl;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
|
-
}), K =
|
|
99
|
+
}), K = i3.actions, u2 = i3.reducer, d2 = {
|
|
100
100
|
modalVisibility: {
|
|
101
101
|
showShutdownModal: !1,
|
|
102
102
|
showIncomingCallModal: !1
|
|
103
103
|
},
|
|
104
104
|
popoverVisibility: {}
|
|
105
|
-
},
|
|
105
|
+
}, a3 = o1({
|
|
106
106
|
name: "ui",
|
|
107
107
|
initialState: d2,
|
|
108
108
|
reducers: {
|
|
@@ -121,141 +121,141 @@ const e2 = {
|
|
|
121
121
|
t.modalVisibility.showIncomingCallModal = e.payload;
|
|
122
122
|
},
|
|
123
123
|
setPopoverState(t, e) {
|
|
124
|
-
t.popoverVisibility[e.payload.popoverGroup] || (t.popoverVisibility[e.payload.popoverGroup] = {}), Object.entries(t.popoverVisibility[e.payload.popoverGroup]).forEach(([
|
|
125
|
-
t.popoverVisibility[e.payload.popoverGroup][
|
|
124
|
+
t.popoverVisibility[e.payload.popoverGroup] || (t.popoverVisibility[e.payload.popoverGroup] = {}), Object.entries(t.popoverVisibility[e.payload.popoverGroup]).forEach(([c]) => {
|
|
125
|
+
t.popoverVisibility[e.payload.popoverGroup][c] = !1;
|
|
126
126
|
}), t.popoverVisibility[e.payload.popoverGroup][e.payload.popoverId] = e.payload.value;
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
|
-
}),
|
|
129
|
+
}), A8 = a3.actions, v2 = a3.reducer, u3 = G3({
|
|
130
130
|
appConfig: n2,
|
|
131
131
|
runtimeConfig: u2,
|
|
132
132
|
rooms: i2,
|
|
133
|
-
devices:
|
|
133
|
+
devices: o2,
|
|
134
134
|
ui: v2
|
|
135
|
-
}), h2 =
|
|
136
|
-
reducer:
|
|
137
|
-
}), Z =
|
|
135
|
+
}), h2 = n3({
|
|
136
|
+
reducer: u3
|
|
137
|
+
}), Z = Y3, g2 = () => Z((t) => t.appConfig.config), B8 = () => Z((t) => t.appConfig.config.apiPath), f2 = () => Z((t) => t.devices);
|
|
138
138
|
function L(t) {
|
|
139
139
|
return Z((e) => e.devices[t] ? e.devices[t] : void 0);
|
|
140
140
|
}
|
|
141
|
-
const
|
|
141
|
+
const T8 = (t) => Z(
|
|
142
142
|
(e) => {
|
|
143
|
-
var
|
|
144
|
-
return e.rooms[t] ? (
|
|
143
|
+
var c;
|
|
144
|
+
return e.rooms[t] ? (c = e.rooms[t]) == null ? void 0 : c.configuration : void 0;
|
|
145
145
|
}
|
|
146
|
-
),
|
|
146
|
+
), R1 = (t) => Z(
|
|
147
147
|
(e) => e.rooms[t] ? e.rooms[t] : void 0
|
|
148
|
-
), T8 = (t) => Z(
|
|
149
|
-
(e) => {
|
|
150
|
-
var o;
|
|
151
|
-
return e.rooms[t] ? (o = e.rooms[t]) == null ? void 0 : o.name : void 0;
|
|
152
|
-
}
|
|
153
|
-
), w2 = (t, e) => Z(
|
|
154
|
-
(o) => {
|
|
155
|
-
var s;
|
|
156
|
-
return o.rooms[t] ? (s = o.rooms[t]) == null ? void 0 : s.volumes[e] : void 0;
|
|
157
|
-
}
|
|
158
148
|
), D8 = (t) => Z(
|
|
159
149
|
(e) => {
|
|
160
|
-
var
|
|
161
|
-
return e.rooms[t] ? (
|
|
150
|
+
var c;
|
|
151
|
+
return e.rooms[t] ? (c = e.rooms[t]) == null ? void 0 : c.name : void 0;
|
|
162
152
|
}
|
|
163
|
-
),
|
|
164
|
-
(
|
|
165
|
-
var o
|
|
166
|
-
return
|
|
153
|
+
), w2 = (t, e) => Z(
|
|
154
|
+
(c) => {
|
|
155
|
+
var o;
|
|
156
|
+
return c.rooms[t] ? (o = c.rooms[t]) == null ? void 0 : o.volumes[e] : void 0;
|
|
167
157
|
}
|
|
168
158
|
), P8 = (t) => Z(
|
|
169
159
|
(e) => {
|
|
170
|
-
var
|
|
171
|
-
return e.rooms[t] ? (
|
|
160
|
+
var c, o;
|
|
161
|
+
return e.rooms[t] ? (o = (c = e.rooms[t]) == null ? void 0 : c.configuration) == null ? void 0 : o.sourceList : void 0;
|
|
172
162
|
}
|
|
173
163
|
), O8 = (t) => Z(
|
|
174
164
|
(e) => {
|
|
175
|
-
var
|
|
176
|
-
return e.rooms[t] ? (
|
|
165
|
+
var c, o;
|
|
166
|
+
return e.rooms[t] ? (o = (c = e.rooms[t]) == null ? void 0 : c.configuration) == null ? void 0 : o.destinations : void 0;
|
|
177
167
|
}
|
|
178
168
|
), V8 = (t) => Z(
|
|
179
169
|
(e) => {
|
|
180
|
-
var
|
|
181
|
-
return
|
|
170
|
+
var c, o;
|
|
171
|
+
return e.rooms[t] ? (o = (c = e.rooms[t]) == null ? void 0 : c.configuration) == null ? void 0 : o.destinationList : void 0;
|
|
182
172
|
}
|
|
183
173
|
), F8 = (t) => Z(
|
|
184
174
|
(e) => {
|
|
185
|
-
var
|
|
186
|
-
return e.rooms[t] ? (
|
|
175
|
+
var c, o;
|
|
176
|
+
return e.rooms[t] ? (o = (c = e.rooms[t]) == null ? void 0 : c.configuration) == null ? void 0 : o.environmentalDevices : void 0;
|
|
187
177
|
}
|
|
188
178
|
), k8 = (t) => Z(
|
|
189
179
|
(e) => {
|
|
190
|
-
var o;
|
|
191
|
-
return e.rooms[t] ?
|
|
180
|
+
var c, o, l, i, d, f, u, S;
|
|
181
|
+
return (o = (c = e.rooms[t]) == null ? void 0 : c.configuration) != null && o.destinationList.programAudio ? (d = (i = (l = e.rooms[t]) == null ? void 0 : l.configuration) == null ? void 0 : i.destinationList.programAudio) == null ? void 0 : d.sinkKey : ((S = (u = (f = e.rooms[t]) == null ? void 0 : f.configuration) == null ? void 0 : u.destinationList.defaultDisplay) == null ? void 0 : S.sinkKey) || "";
|
|
192
182
|
}
|
|
193
183
|
), U8 = (t) => Z(
|
|
194
184
|
(e) => {
|
|
195
|
-
var o;
|
|
196
|
-
return e.rooms[t] ? (o = e.rooms[t]) == null ? void 0 : o.
|
|
185
|
+
var c, o, l;
|
|
186
|
+
return e.rooms[t] ? (l = (o = (c = e.rooms[t]) == null ? void 0 : c.configuration) == null ? void 0 : o.destinationList.codecContent) == null ? void 0 : l.sinkKey : void 0;
|
|
197
187
|
}
|
|
198
188
|
), W8 = (t) => Z(
|
|
199
189
|
(e) => {
|
|
200
|
-
var
|
|
201
|
-
return e.rooms[t] ? (
|
|
190
|
+
var c;
|
|
191
|
+
return e.rooms[t] ? (c = e.rooms[t]) == null ? void 0 : c.isInCall : void 0;
|
|
202
192
|
}
|
|
203
193
|
), H8 = (t) => Z(
|
|
204
194
|
(e) => {
|
|
205
|
-
var
|
|
206
|
-
return e.rooms[t] ? (
|
|
195
|
+
var c;
|
|
196
|
+
return e.rooms[t] ? (c = e.rooms[t]) == null ? void 0 : c.isWarmingUp : void 0;
|
|
207
197
|
}
|
|
208
198
|
), K8 = (t) => Z(
|
|
209
199
|
(e) => {
|
|
210
|
-
var
|
|
211
|
-
return e.rooms[t] ? (
|
|
200
|
+
var c;
|
|
201
|
+
return e.rooms[t] ? (c = e.rooms[t]) == null ? void 0 : c.isCoolingDown : void 0;
|
|
212
202
|
}
|
|
213
203
|
), G8 = (t) => Z(
|
|
214
204
|
(e) => {
|
|
215
|
-
var
|
|
216
|
-
return e.rooms[t] ? (
|
|
205
|
+
var c;
|
|
206
|
+
return e.rooms[t] ? (c = e.rooms[t]) == null ? void 0 : c.isOn : void 0;
|
|
217
207
|
}
|
|
218
|
-
), q8 = (t) =>
|
|
208
|
+
), q8 = (t) => Z(
|
|
209
|
+
(e) => {
|
|
210
|
+
var c;
|
|
211
|
+
return e.rooms[t] ? (c = e.rooms[t]) == null ? void 0 : c.advancedSharingActive : void 0;
|
|
212
|
+
}
|
|
213
|
+
), Y8 = (t) => Z(
|
|
214
|
+
(e) => {
|
|
215
|
+
var c;
|
|
216
|
+
return e.rooms[t] ? (c = e.rooms[t]) == null ? void 0 : c.share : void 0;
|
|
217
|
+
}
|
|
218
|
+
), J8 = (t) => q3(
|
|
219
219
|
[
|
|
220
|
-
(e,
|
|
220
|
+
(e, c) => c,
|
|
221
221
|
f2,
|
|
222
222
|
(e) => {
|
|
223
|
-
var
|
|
224
|
-
return (
|
|
223
|
+
var c, o;
|
|
224
|
+
return (o = (c = e.rooms[t]) == null ? void 0 : c.configuration) == null ? void 0 : o.destinations;
|
|
225
225
|
}
|
|
226
226
|
],
|
|
227
|
-
(e,
|
|
228
|
-
if (console.log("roomKey", e), console.log("devices",
|
|
227
|
+
(e, c, o) => {
|
|
228
|
+
if (console.log("roomKey", e), console.log("devices", c), console.log("destinations", o), !o)
|
|
229
229
|
return;
|
|
230
|
-
const l = Object.entries(
|
|
231
|
-
return Object.values(
|
|
230
|
+
const l = Object.entries(o).filter(([d]) => d !== "programAudio" && d !== "codecContent").map(([, d]) => d);
|
|
231
|
+
return Object.values(c).filter((d) => Object.values(l).includes(d.key));
|
|
232
232
|
}
|
|
233
|
-
)(h2.getState(), t),
|
|
233
|
+
)(h2.getState(), t), z8 = (t) => Z(
|
|
234
234
|
(e) => {
|
|
235
|
-
var
|
|
236
|
-
return e.rooms[t] ? (
|
|
237
|
-
}
|
|
238
|
-
), p2 = () => Z((t) => t.runtimeConfig.websocket.isConnected), x2 = () => Z((t) => t.runtimeConfig.roomData.roomKey), M2 = () => Z((t) => t.runtimeConfig.roomData.clientId),
|
|
239
|
-
const
|
|
240
|
-
if (
|
|
241
|
-
return Object.keys(
|
|
242
|
-
}),
|
|
243
|
-
var
|
|
244
|
-
return (
|
|
245
|
-
}), F =
|
|
246
|
-
reducer:
|
|
247
|
-
}), m2 =
|
|
235
|
+
var c, o;
|
|
236
|
+
return e.rooms[t] ? (o = (c = e.rooms[t]) == null ? void 0 : c.configuration) == null ? void 0 : o.zoomRoomControllerKey : void 0;
|
|
237
|
+
}
|
|
238
|
+
), p2 = () => Z((t) => t.runtimeConfig.websocket.isConnected), x2 = () => Z((t) => t.runtimeConfig.roomData.roomKey), M2 = () => Z((t) => t.runtimeConfig.roomData.clientId), X8 = () => Z((t) => t.ui.modalVisibility.showShutdownModal), Q8 = () => Z((t) => t.ui.modalVisibility.showIncomingCallModal), N8 = (t) => Z((e) => e.ui.modalVisibility[t]), e6 = (t) => Z((e) => {
|
|
239
|
+
const c = e.ui.popoverVisibility[t];
|
|
240
|
+
if (c)
|
|
241
|
+
return Object.keys(c).find((o) => c[o]);
|
|
242
|
+
}), t6 = (t, e) => Z((c) => {
|
|
243
|
+
var o;
|
|
244
|
+
return (o = c.ui.popoverVisibility[t]) == null ? void 0 : o[e];
|
|
245
|
+
}), F = n3({
|
|
246
|
+
reducer: u3
|
|
247
|
+
}), m2 = J3, b1 = K3.create();
|
|
248
248
|
function Z2() {
|
|
249
249
|
const t = m2();
|
|
250
250
|
return async () => {
|
|
251
251
|
try {
|
|
252
252
|
const e = location.pathname.split("/").filter((l) => l.length > 0);
|
|
253
253
|
e.length >= 5 ? e.length = 5 : e.length = 2;
|
|
254
|
-
const
|
|
255
|
-
if (
|
|
256
|
-
const l =
|
|
257
|
-
t(t2.setAppConfig(
|
|
258
|
-
const i = await
|
|
254
|
+
const c = `/${e.join("/")}`, o = await b1.get("/_local-config/_config.local.json", { baseURL: c });
|
|
255
|
+
if (o.status == 200 && o.data) {
|
|
256
|
+
const l = o.data.apiPath;
|
|
257
|
+
t(t2.setAppConfig(o.data));
|
|
258
|
+
const i = await b1.get(`${l}/version`);
|
|
259
259
|
i.status == 200 && i.data && t(K.setRuntimeConfig(i.data));
|
|
260
260
|
}
|
|
261
261
|
} catch (e) {
|
|
@@ -264,7 +264,7 @@ function Z2() {
|
|
|
264
264
|
return !0;
|
|
265
265
|
};
|
|
266
266
|
}
|
|
267
|
-
var
|
|
267
|
+
var I1 = { exports: {} }, t1 = {};
|
|
268
268
|
/**
|
|
269
269
|
* @license React
|
|
270
270
|
* react-jsx-runtime.development.js
|
|
@@ -274,89 +274,89 @@ var I3 = { exports: {} }, t3 = {};
|
|
|
274
274
|
* This source code is licensed under the MIT license found in the
|
|
275
275
|
* LICENSE file in the root directory of this source tree.
|
|
276
276
|
*/
|
|
277
|
-
var
|
|
277
|
+
var N1;
|
|
278
278
|
function j2() {
|
|
279
|
-
return
|
|
280
|
-
var t =
|
|
281
|
-
function J(
|
|
282
|
-
if (
|
|
279
|
+
return N1 || (N1 = 1, process.env.NODE_ENV !== "production" && function() {
|
|
280
|
+
var t = s3, e = Symbol.for("react.element"), c = Symbol.for("react.portal"), o = Symbol.for("react.fragment"), l = Symbol.for("react.strict_mode"), i = Symbol.for("react.profiler"), d = Symbol.for("react.provider"), f = Symbol.for("react.context"), u = Symbol.for("react.forward_ref"), S = Symbol.for("react.suspense"), C = Symbol.for("react.suspense_list"), b = Symbol.for("react.memo"), A = Symbol.for("react.lazy"), T = Symbol.for("react.offscreen"), V = Symbol.iterator, Y = "@@iterator";
|
|
281
|
+
function J(s) {
|
|
282
|
+
if (s === null || typeof s != "object")
|
|
283
283
|
return null;
|
|
284
|
-
var
|
|
285
|
-
return typeof
|
|
284
|
+
var r = V && s[V] || s[Y];
|
|
285
|
+
return typeof r == "function" ? r : null;
|
|
286
286
|
}
|
|
287
287
|
var m = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
288
|
-
function g(
|
|
288
|
+
function g(s) {
|
|
289
289
|
{
|
|
290
|
-
for (var
|
|
290
|
+
for (var r = arguments.length, a = new Array(r > 1 ? r - 1 : 0), v = 1; v < r; v++)
|
|
291
291
|
a[v - 1] = arguments[v];
|
|
292
|
-
O("error",
|
|
292
|
+
O("error", s, a);
|
|
293
293
|
}
|
|
294
294
|
}
|
|
295
|
-
function O(
|
|
295
|
+
function O(s, r, a) {
|
|
296
296
|
{
|
|
297
|
-
var v = m.ReactDebugCurrentFrame,
|
|
298
|
-
|
|
297
|
+
var v = m.ReactDebugCurrentFrame, M = v.getStackAddendum();
|
|
298
|
+
M !== "" && (r += "%s", a = a.concat([M]));
|
|
299
299
|
var j = a.map(function(p) {
|
|
300
300
|
return String(p);
|
|
301
301
|
});
|
|
302
|
-
j.unshift("Warning: " +
|
|
302
|
+
j.unshift("Warning: " + r), Function.prototype.apply.call(console[s], console, j);
|
|
303
303
|
}
|
|
304
304
|
}
|
|
305
|
-
var z = !1, E = !1, X = !1,
|
|
306
|
-
|
|
307
|
-
function
|
|
308
|
-
return !!(typeof
|
|
305
|
+
var z = !1, E = !1, X = !1, v1 = !1, h1 = !1, E1;
|
|
306
|
+
E1 = Symbol.for("react.module.reference");
|
|
307
|
+
function g3(s) {
|
|
308
|
+
return !!(typeof s == "string" || typeof s == "function" || s === o || s === i || h1 || s === l || s === S || s === C || v1 || s === T || z || E || X || typeof s == "object" && s !== null && (s.$$typeof === A || s.$$typeof === b || s.$$typeof === d || s.$$typeof === f || s.$$typeof === u || // This needs to include all possible module reference object
|
|
309
309
|
// types supported by any Flight configuration anywhere since
|
|
310
310
|
// we don't know which Flight build this will end up being used
|
|
311
311
|
// with.
|
|
312
|
-
|
|
312
|
+
s.$$typeof === E1 || s.getModuleId !== void 0));
|
|
313
313
|
}
|
|
314
|
-
function
|
|
315
|
-
var v =
|
|
314
|
+
function f3(s, r, a) {
|
|
315
|
+
var v = s.displayName;
|
|
316
316
|
if (v)
|
|
317
317
|
return v;
|
|
318
|
-
var
|
|
319
|
-
return
|
|
318
|
+
var M = r.displayName || r.name || "";
|
|
319
|
+
return M !== "" ? a + "(" + M + ")" : a;
|
|
320
320
|
}
|
|
321
|
-
function
|
|
322
|
-
return
|
|
321
|
+
function _1(s) {
|
|
322
|
+
return s.displayName || "Context";
|
|
323
323
|
}
|
|
324
|
-
function P(
|
|
325
|
-
if (
|
|
324
|
+
function P(s) {
|
|
325
|
+
if (s == null)
|
|
326
326
|
return null;
|
|
327
|
-
if (typeof
|
|
328
|
-
return
|
|
329
|
-
if (typeof
|
|
330
|
-
return
|
|
331
|
-
switch (
|
|
332
|
-
case s:
|
|
333
|
-
return "Fragment";
|
|
327
|
+
if (typeof s.tag == "number" && g("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof s == "function")
|
|
328
|
+
return s.displayName || s.name || null;
|
|
329
|
+
if (typeof s == "string")
|
|
330
|
+
return s;
|
|
331
|
+
switch (s) {
|
|
334
332
|
case o:
|
|
333
|
+
return "Fragment";
|
|
334
|
+
case c:
|
|
335
335
|
return "Portal";
|
|
336
336
|
case i:
|
|
337
337
|
return "Profiler";
|
|
338
338
|
case l:
|
|
339
339
|
return "StrictMode";
|
|
340
|
-
case C:
|
|
341
|
-
return "Suspense";
|
|
342
340
|
case S:
|
|
341
|
+
return "Suspense";
|
|
342
|
+
case C:
|
|
343
343
|
return "SuspenseList";
|
|
344
344
|
}
|
|
345
|
-
if (typeof
|
|
346
|
-
switch (
|
|
345
|
+
if (typeof s == "object")
|
|
346
|
+
switch (s.$$typeof) {
|
|
347
347
|
case f:
|
|
348
|
-
var
|
|
349
|
-
return
|
|
348
|
+
var r = s;
|
|
349
|
+
return _1(r) + ".Consumer";
|
|
350
350
|
case d:
|
|
351
|
-
var a =
|
|
352
|
-
return
|
|
351
|
+
var a = s;
|
|
352
|
+
return _1(a._context) + ".Provider";
|
|
353
353
|
case u:
|
|
354
|
-
return
|
|
354
|
+
return f3(s, s.render, "ForwardRef");
|
|
355
355
|
case b:
|
|
356
|
-
var v =
|
|
357
|
-
return v !== null ? v : P(
|
|
356
|
+
var v = s.displayName || null;
|
|
357
|
+
return v !== null ? v : P(s.type) || "Memo";
|
|
358
358
|
case A: {
|
|
359
|
-
var
|
|
359
|
+
var M = s, j = M._payload, p = M._init;
|
|
360
360
|
try {
|
|
361
361
|
return P(p(j));
|
|
362
362
|
} catch {
|
|
@@ -366,103 +366,103 @@ function j2() {
|
|
|
366
366
|
}
|
|
367
367
|
return null;
|
|
368
368
|
}
|
|
369
|
-
var k = Object.assign, Q = 0,
|
|
370
|
-
function
|
|
369
|
+
var k = Object.assign, Q = 0, L1, $1, A1, B1, T1, D1, P1;
|
|
370
|
+
function O1() {
|
|
371
371
|
}
|
|
372
|
-
|
|
373
|
-
function
|
|
372
|
+
O1.__reactDisabledLog = !0;
|
|
373
|
+
function w3() {
|
|
374
374
|
{
|
|
375
375
|
if (Q === 0) {
|
|
376
|
-
|
|
377
|
-
var
|
|
376
|
+
L1 = console.log, $1 = console.info, A1 = console.warn, B1 = console.error, T1 = console.group, D1 = console.groupCollapsed, P1 = console.groupEnd;
|
|
377
|
+
var s = {
|
|
378
378
|
configurable: !0,
|
|
379
379
|
enumerable: !0,
|
|
380
|
-
value:
|
|
380
|
+
value: O1,
|
|
381
381
|
writable: !0
|
|
382
382
|
};
|
|
383
383
|
Object.defineProperties(console, {
|
|
384
|
-
info:
|
|
385
|
-
log:
|
|
386
|
-
warn:
|
|
387
|
-
error:
|
|
388
|
-
group:
|
|
389
|
-
groupCollapsed:
|
|
390
|
-
groupEnd:
|
|
384
|
+
info: s,
|
|
385
|
+
log: s,
|
|
386
|
+
warn: s,
|
|
387
|
+
error: s,
|
|
388
|
+
group: s,
|
|
389
|
+
groupCollapsed: s,
|
|
390
|
+
groupEnd: s
|
|
391
391
|
});
|
|
392
392
|
}
|
|
393
393
|
Q++;
|
|
394
394
|
}
|
|
395
395
|
}
|
|
396
|
-
function
|
|
396
|
+
function p3() {
|
|
397
397
|
{
|
|
398
398
|
if (Q--, Q === 0) {
|
|
399
|
-
var
|
|
399
|
+
var s = {
|
|
400
400
|
configurable: !0,
|
|
401
401
|
enumerable: !0,
|
|
402
402
|
writable: !0
|
|
403
403
|
};
|
|
404
404
|
Object.defineProperties(console, {
|
|
405
|
-
log: k({},
|
|
406
|
-
value:
|
|
405
|
+
log: k({}, s, {
|
|
406
|
+
value: L1
|
|
407
407
|
}),
|
|
408
|
-
info: k({},
|
|
409
|
-
value: $
|
|
408
|
+
info: k({}, s, {
|
|
409
|
+
value: $1
|
|
410
410
|
}),
|
|
411
|
-
warn: k({},
|
|
412
|
-
value:
|
|
411
|
+
warn: k({}, s, {
|
|
412
|
+
value: A1
|
|
413
413
|
}),
|
|
414
|
-
error: k({},
|
|
415
|
-
value:
|
|
414
|
+
error: k({}, s, {
|
|
415
|
+
value: B1
|
|
416
416
|
}),
|
|
417
|
-
group: k({},
|
|
418
|
-
value:
|
|
417
|
+
group: k({}, s, {
|
|
418
|
+
value: T1
|
|
419
419
|
}),
|
|
420
|
-
groupCollapsed: k({},
|
|
421
|
-
value:
|
|
420
|
+
groupCollapsed: k({}, s, {
|
|
421
|
+
value: D1
|
|
422
422
|
}),
|
|
423
|
-
groupEnd: k({},
|
|
424
|
-
value:
|
|
423
|
+
groupEnd: k({}, s, {
|
|
424
|
+
value: P1
|
|
425
425
|
})
|
|
426
426
|
});
|
|
427
427
|
}
|
|
428
428
|
Q < 0 && g("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
|
429
429
|
}
|
|
430
430
|
}
|
|
431
|
-
var
|
|
432
|
-
function
|
|
431
|
+
var g1 = m.ReactCurrentDispatcher, f1;
|
|
432
|
+
function r1(s, r, a) {
|
|
433
433
|
{
|
|
434
|
-
if (
|
|
434
|
+
if (f1 === void 0)
|
|
435
435
|
try {
|
|
436
436
|
throw Error();
|
|
437
|
-
} catch (
|
|
438
|
-
var v =
|
|
439
|
-
|
|
437
|
+
} catch (M) {
|
|
438
|
+
var v = M.stack.trim().match(/\n( *(at )?)/);
|
|
439
|
+
f1 = v && v[1] || "";
|
|
440
440
|
}
|
|
441
441
|
return `
|
|
442
|
-
` +
|
|
442
|
+
` + f1 + s;
|
|
443
443
|
}
|
|
444
444
|
}
|
|
445
|
-
var
|
|
445
|
+
var w1 = !1, l1;
|
|
446
446
|
{
|
|
447
|
-
var
|
|
448
|
-
|
|
447
|
+
var x3 = typeof WeakMap == "function" ? WeakMap : Map;
|
|
448
|
+
l1 = new x3();
|
|
449
449
|
}
|
|
450
|
-
function
|
|
451
|
-
if (!
|
|
450
|
+
function V1(s, r) {
|
|
451
|
+
if (!s || w1)
|
|
452
452
|
return "";
|
|
453
453
|
{
|
|
454
|
-
var a =
|
|
454
|
+
var a = l1.get(s);
|
|
455
455
|
if (a !== void 0)
|
|
456
456
|
return a;
|
|
457
457
|
}
|
|
458
458
|
var v;
|
|
459
|
-
|
|
460
|
-
var
|
|
459
|
+
w1 = !0;
|
|
460
|
+
var M = Error.prepareStackTrace;
|
|
461
461
|
Error.prepareStackTrace = void 0;
|
|
462
462
|
var j;
|
|
463
|
-
j =
|
|
463
|
+
j = g1.current, g1.current = null, w3();
|
|
464
464
|
try {
|
|
465
|
-
if (
|
|
465
|
+
if (r) {
|
|
466
466
|
var p = function() {
|
|
467
467
|
throw Error();
|
|
468
468
|
};
|
|
@@ -473,29 +473,29 @@ function j2() {
|
|
|
473
473
|
}), typeof Reflect == "object" && Reflect.construct) {
|
|
474
474
|
try {
|
|
475
475
|
Reflect.construct(p, []);
|
|
476
|
-
} catch (
|
|
477
|
-
v =
|
|
476
|
+
} catch (B) {
|
|
477
|
+
v = B;
|
|
478
478
|
}
|
|
479
|
-
Reflect.construct(
|
|
479
|
+
Reflect.construct(s, [], p);
|
|
480
480
|
} else {
|
|
481
481
|
try {
|
|
482
482
|
p.call();
|
|
483
|
-
} catch (
|
|
484
|
-
v =
|
|
483
|
+
} catch (B) {
|
|
484
|
+
v = B;
|
|
485
485
|
}
|
|
486
|
-
|
|
486
|
+
s.call(p.prototype);
|
|
487
487
|
}
|
|
488
488
|
} else {
|
|
489
489
|
try {
|
|
490
490
|
throw Error();
|
|
491
|
-
} catch (
|
|
492
|
-
v =
|
|
491
|
+
} catch (B) {
|
|
492
|
+
v = B;
|
|
493
493
|
}
|
|
494
|
-
|
|
494
|
+
s();
|
|
495
495
|
}
|
|
496
|
-
} catch (
|
|
497
|
-
if (
|
|
498
|
-
for (var w =
|
|
496
|
+
} catch (B) {
|
|
497
|
+
if (B && v && typeof B.stack == "string") {
|
|
498
|
+
for (var w = B.stack.split(`
|
|
499
499
|
`), $ = v.stack.split(`
|
|
500
500
|
`), I = w.length - 1, R = $.length - 1; I >= 1 && R >= 0 && w[I] !== $[R]; )
|
|
501
501
|
R--;
|
|
@@ -504,165 +504,165 @@ function j2() {
|
|
|
504
504
|
if (I !== 1 || R !== 1)
|
|
505
505
|
do
|
|
506
506
|
if (I--, R--, R < 0 || w[I] !== $[R]) {
|
|
507
|
-
var
|
|
507
|
+
var D = `
|
|
508
508
|
` + w[I].replace(" at new ", " at ");
|
|
509
|
-
return
|
|
509
|
+
return s.displayName && D.includes("<anonymous>") && (D = D.replace("<anonymous>", s.displayName)), typeof s == "function" && l1.set(s, D), D;
|
|
510
510
|
}
|
|
511
511
|
while (I >= 1 && R >= 0);
|
|
512
512
|
break;
|
|
513
513
|
}
|
|
514
514
|
}
|
|
515
515
|
} finally {
|
|
516
|
-
|
|
516
|
+
w1 = !1, g1.current = j, p3(), Error.prepareStackTrace = M;
|
|
517
517
|
}
|
|
518
|
-
var H =
|
|
519
|
-
return typeof
|
|
518
|
+
var H = s ? s.displayName || s.name : "", U = H ? r1(H) : "";
|
|
519
|
+
return typeof s == "function" && l1.set(s, U), U;
|
|
520
520
|
}
|
|
521
|
-
function
|
|
522
|
-
return
|
|
521
|
+
function M3(s, r, a) {
|
|
522
|
+
return V1(s, !1);
|
|
523
523
|
}
|
|
524
|
-
function
|
|
525
|
-
var
|
|
526
|
-
return !!(
|
|
524
|
+
function m3(s) {
|
|
525
|
+
var r = s.prototype;
|
|
526
|
+
return !!(r && r.isReactComponent);
|
|
527
527
|
}
|
|
528
|
-
function
|
|
529
|
-
if (
|
|
528
|
+
function i1(s, r, a) {
|
|
529
|
+
if (s == null)
|
|
530
530
|
return "";
|
|
531
|
-
if (typeof
|
|
532
|
-
return
|
|
533
|
-
if (typeof
|
|
534
|
-
return
|
|
535
|
-
switch (
|
|
536
|
-
case C:
|
|
537
|
-
return c3("Suspense");
|
|
531
|
+
if (typeof s == "function")
|
|
532
|
+
return V1(s, m3(s));
|
|
533
|
+
if (typeof s == "string")
|
|
534
|
+
return r1(s);
|
|
535
|
+
switch (s) {
|
|
538
536
|
case S:
|
|
539
|
-
return
|
|
537
|
+
return r1("Suspense");
|
|
538
|
+
case C:
|
|
539
|
+
return r1("SuspenseList");
|
|
540
540
|
}
|
|
541
|
-
if (typeof
|
|
542
|
-
switch (
|
|
541
|
+
if (typeof s == "object")
|
|
542
|
+
switch (s.$$typeof) {
|
|
543
543
|
case u:
|
|
544
|
-
return
|
|
544
|
+
return M3(s.render);
|
|
545
545
|
case b:
|
|
546
|
-
return
|
|
546
|
+
return i1(s.type, r, a);
|
|
547
547
|
case A: {
|
|
548
|
-
var v =
|
|
548
|
+
var v = s, M = v._payload, j = v._init;
|
|
549
549
|
try {
|
|
550
|
-
return
|
|
550
|
+
return i1(j(M), r, a);
|
|
551
551
|
} catch {
|
|
552
552
|
}
|
|
553
553
|
}
|
|
554
554
|
}
|
|
555
555
|
return "";
|
|
556
556
|
}
|
|
557
|
-
var N = Object.prototype.hasOwnProperty,
|
|
558
|
-
function
|
|
559
|
-
if (
|
|
560
|
-
var
|
|
561
|
-
|
|
557
|
+
var N = Object.prototype.hasOwnProperty, F1 = {}, k1 = m.ReactDebugCurrentFrame;
|
|
558
|
+
function a1(s) {
|
|
559
|
+
if (s) {
|
|
560
|
+
var r = s._owner, a = i1(s.type, s._source, r ? r.type : null);
|
|
561
|
+
k1.setExtraStackFrame(a);
|
|
562
562
|
} else
|
|
563
|
-
|
|
563
|
+
k1.setExtraStackFrame(null);
|
|
564
564
|
}
|
|
565
|
-
function
|
|
565
|
+
function Z3(s, r, a, v, M) {
|
|
566
566
|
{
|
|
567
567
|
var j = Function.call.bind(N);
|
|
568
|
-
for (var p in
|
|
569
|
-
if (j(
|
|
568
|
+
for (var p in s)
|
|
569
|
+
if (j(s, p)) {
|
|
570
570
|
var w = void 0;
|
|
571
571
|
try {
|
|
572
|
-
if (typeof
|
|
573
|
-
var $ = Error((v || "React class") + ": " + a + " type `" + p + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof
|
|
572
|
+
if (typeof s[p] != "function") {
|
|
573
|
+
var $ = Error((v || "React class") + ": " + a + " type `" + p + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof s[p] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
574
574
|
throw $.name = "Invariant Violation", $;
|
|
575
575
|
}
|
|
576
|
-
w =
|
|
576
|
+
w = s[p](r, p, v, a, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
577
577
|
} catch (I) {
|
|
578
578
|
w = I;
|
|
579
579
|
}
|
|
580
|
-
w && !(w instanceof Error) && (
|
|
580
|
+
w && !(w instanceof Error) && (a1(M), g("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", v || "React class", a, p, typeof w), a1(null)), w instanceof Error && !(w.message in F1) && (F1[w.message] = !0, a1(M), g("Failed %s type: %s", a, w.message), a1(null));
|
|
581
581
|
}
|
|
582
582
|
}
|
|
583
583
|
}
|
|
584
|
-
var
|
|
585
|
-
function
|
|
586
|
-
return
|
|
584
|
+
var j3 = Array.isArray;
|
|
585
|
+
function p1(s) {
|
|
586
|
+
return j3(s);
|
|
587
587
|
}
|
|
588
|
-
function
|
|
588
|
+
function C3(s) {
|
|
589
589
|
{
|
|
590
|
-
var
|
|
590
|
+
var r = typeof Symbol == "function" && Symbol.toStringTag, a = r && s[Symbol.toStringTag] || s.constructor.name || "Object";
|
|
591
591
|
return a;
|
|
592
592
|
}
|
|
593
593
|
}
|
|
594
|
-
function
|
|
594
|
+
function S3(s) {
|
|
595
595
|
try {
|
|
596
|
-
return
|
|
596
|
+
return U1(s), !1;
|
|
597
597
|
} catch {
|
|
598
598
|
return !0;
|
|
599
599
|
}
|
|
600
600
|
}
|
|
601
|
-
function
|
|
602
|
-
return "" +
|
|
601
|
+
function U1(s) {
|
|
602
|
+
return "" + s;
|
|
603
603
|
}
|
|
604
|
-
function
|
|
605
|
-
if (
|
|
606
|
-
return g("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.",
|
|
604
|
+
function W1(s) {
|
|
605
|
+
if (S3(s))
|
|
606
|
+
return g("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", C3(s)), U1(s);
|
|
607
607
|
}
|
|
608
|
-
var
|
|
608
|
+
var e1 = m.ReactCurrentOwner, b3 = {
|
|
609
609
|
key: !0,
|
|
610
610
|
ref: !0,
|
|
611
611
|
__self: !0,
|
|
612
612
|
__source: !0
|
|
613
|
-
},
|
|
614
|
-
|
|
615
|
-
function
|
|
616
|
-
if (N.call(
|
|
617
|
-
var
|
|
618
|
-
if (
|
|
613
|
+
}, H1, K1, x1;
|
|
614
|
+
x1 = {};
|
|
615
|
+
function I3(s) {
|
|
616
|
+
if (N.call(s, "ref")) {
|
|
617
|
+
var r = Object.getOwnPropertyDescriptor(s, "ref").get;
|
|
618
|
+
if (r && r.isReactWarning)
|
|
619
619
|
return !1;
|
|
620
620
|
}
|
|
621
|
-
return
|
|
621
|
+
return s.ref !== void 0;
|
|
622
622
|
}
|
|
623
|
-
function
|
|
624
|
-
if (N.call(
|
|
625
|
-
var
|
|
626
|
-
if (
|
|
623
|
+
function y3(s) {
|
|
624
|
+
if (N.call(s, "key")) {
|
|
625
|
+
var r = Object.getOwnPropertyDescriptor(s, "key").get;
|
|
626
|
+
if (r && r.isReactWarning)
|
|
627
627
|
return !1;
|
|
628
628
|
}
|
|
629
|
-
return
|
|
629
|
+
return s.key !== void 0;
|
|
630
630
|
}
|
|
631
|
-
function
|
|
632
|
-
if (typeof
|
|
633
|
-
var a = P(
|
|
634
|
-
|
|
631
|
+
function R3(s, r) {
|
|
632
|
+
if (typeof s.ref == "string" && e1.current && r && e1.current.stateNode !== r) {
|
|
633
|
+
var a = P(e1.current.type);
|
|
634
|
+
x1[a] || (g('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', P(e1.current.type), s.ref), x1[a] = !0);
|
|
635
635
|
}
|
|
636
636
|
}
|
|
637
|
-
function
|
|
637
|
+
function E3(s, r) {
|
|
638
638
|
{
|
|
639
639
|
var a = function() {
|
|
640
|
-
|
|
640
|
+
H1 || (H1 = !0, g("%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)", r));
|
|
641
641
|
};
|
|
642
|
-
a.isReactWarning = !0, Object.defineProperty(
|
|
642
|
+
a.isReactWarning = !0, Object.defineProperty(s, "key", {
|
|
643
643
|
get: a,
|
|
644
644
|
configurable: !0
|
|
645
645
|
});
|
|
646
646
|
}
|
|
647
647
|
}
|
|
648
|
-
function
|
|
648
|
+
function _3(s, r) {
|
|
649
649
|
{
|
|
650
650
|
var a = function() {
|
|
651
|
-
|
|
651
|
+
K1 || (K1 = !0, g("%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)", r));
|
|
652
652
|
};
|
|
653
|
-
a.isReactWarning = !0, Object.defineProperty(
|
|
653
|
+
a.isReactWarning = !0, Object.defineProperty(s, "ref", {
|
|
654
654
|
get: a,
|
|
655
655
|
configurable: !0
|
|
656
656
|
});
|
|
657
657
|
}
|
|
658
658
|
}
|
|
659
|
-
var
|
|
659
|
+
var L3 = function(s, r, a, v, M, j, p) {
|
|
660
660
|
var w = {
|
|
661
661
|
// This tag allows us to uniquely identify this as a React Element
|
|
662
662
|
$$typeof: e,
|
|
663
663
|
// Built-in properties that belong on the element
|
|
664
|
-
type:
|
|
665
|
-
key:
|
|
664
|
+
type: s,
|
|
665
|
+
key: r,
|
|
666
666
|
ref: a,
|
|
667
667
|
props: p,
|
|
668
668
|
// Record the component responsible for creating this element.
|
|
@@ -682,201 +682,201 @@ function j2() {
|
|
|
682
682
|
configurable: !1,
|
|
683
683
|
enumerable: !1,
|
|
684
684
|
writable: !1,
|
|
685
|
-
value:
|
|
685
|
+
value: M
|
|
686
686
|
}), Object.freeze && (Object.freeze(w.props), Object.freeze(w)), w;
|
|
687
687
|
};
|
|
688
|
-
function $
|
|
688
|
+
function $3(s, r, a, v, M) {
|
|
689
689
|
{
|
|
690
690
|
var j, p = {}, w = null, $ = null;
|
|
691
|
-
a !== void 0 && (
|
|
692
|
-
for (j in
|
|
693
|
-
N.call(
|
|
694
|
-
if (
|
|
695
|
-
var I =
|
|
691
|
+
a !== void 0 && (W1(a), w = "" + a), y3(r) && (W1(r.key), w = "" + r.key), I3(r) && ($ = r.ref, R3(r, M));
|
|
692
|
+
for (j in r)
|
|
693
|
+
N.call(r, j) && !b3.hasOwnProperty(j) && (p[j] = r[j]);
|
|
694
|
+
if (s && s.defaultProps) {
|
|
695
|
+
var I = s.defaultProps;
|
|
696
696
|
for (j in I)
|
|
697
697
|
p[j] === void 0 && (p[j] = I[j]);
|
|
698
698
|
}
|
|
699
699
|
if (w || $) {
|
|
700
|
-
var R = typeof
|
|
701
|
-
w &&
|
|
700
|
+
var R = typeof s == "function" ? s.displayName || s.name || "Unknown" : s;
|
|
701
|
+
w && E3(p, R), $ && _3(p, R);
|
|
702
702
|
}
|
|
703
|
-
return
|
|
703
|
+
return L3(s, w, $, M, v, e1.current, p);
|
|
704
704
|
}
|
|
705
705
|
}
|
|
706
|
-
var
|
|
707
|
-
function W(
|
|
708
|
-
if (
|
|
709
|
-
var
|
|
710
|
-
|
|
706
|
+
var M1 = m.ReactCurrentOwner, G1 = m.ReactDebugCurrentFrame;
|
|
707
|
+
function W(s) {
|
|
708
|
+
if (s) {
|
|
709
|
+
var r = s._owner, a = i1(s.type, s._source, r ? r.type : null);
|
|
710
|
+
G1.setExtraStackFrame(a);
|
|
711
711
|
} else
|
|
712
|
-
|
|
712
|
+
G1.setExtraStackFrame(null);
|
|
713
713
|
}
|
|
714
|
-
var
|
|
715
|
-
|
|
716
|
-
function
|
|
717
|
-
return typeof
|
|
714
|
+
var m1;
|
|
715
|
+
m1 = !1;
|
|
716
|
+
function Z1(s) {
|
|
717
|
+
return typeof s == "object" && s !== null && s.$$typeof === e;
|
|
718
718
|
}
|
|
719
|
-
function
|
|
719
|
+
function q1() {
|
|
720
720
|
{
|
|
721
|
-
if (
|
|
722
|
-
var
|
|
723
|
-
if (
|
|
721
|
+
if (M1.current) {
|
|
722
|
+
var s = P(M1.current.type);
|
|
723
|
+
if (s)
|
|
724
724
|
return `
|
|
725
725
|
|
|
726
|
-
Check the render method of \`` +
|
|
726
|
+
Check the render method of \`` + s + "`.";
|
|
727
727
|
}
|
|
728
728
|
return "";
|
|
729
729
|
}
|
|
730
730
|
}
|
|
731
|
-
function
|
|
731
|
+
function A3(s) {
|
|
732
732
|
{
|
|
733
|
-
if (
|
|
734
|
-
var
|
|
733
|
+
if (s !== void 0) {
|
|
734
|
+
var r = s.fileName.replace(/^.*[\\\/]/, ""), a = s.lineNumber;
|
|
735
735
|
return `
|
|
736
736
|
|
|
737
|
-
Check your code at ` +
|
|
737
|
+
Check your code at ` + r + ":" + a + ".";
|
|
738
738
|
}
|
|
739
739
|
return "";
|
|
740
740
|
}
|
|
741
741
|
}
|
|
742
|
-
var
|
|
743
|
-
function
|
|
742
|
+
var Y1 = {};
|
|
743
|
+
function B3(s) {
|
|
744
744
|
{
|
|
745
|
-
var
|
|
746
|
-
if (!
|
|
747
|
-
var a = typeof
|
|
748
|
-
a && (
|
|
745
|
+
var r = q1();
|
|
746
|
+
if (!r) {
|
|
747
|
+
var a = typeof s == "string" ? s : s.displayName || s.name;
|
|
748
|
+
a && (r = `
|
|
749
749
|
|
|
750
750
|
Check the top-level render call using <` + a + ">.");
|
|
751
751
|
}
|
|
752
|
-
return
|
|
752
|
+
return r;
|
|
753
753
|
}
|
|
754
754
|
}
|
|
755
|
-
function
|
|
755
|
+
function J1(s, r) {
|
|
756
756
|
{
|
|
757
|
-
if (!
|
|
757
|
+
if (!s._store || s._store.validated || s.key != null)
|
|
758
758
|
return;
|
|
759
|
-
|
|
760
|
-
var a =
|
|
761
|
-
if (
|
|
759
|
+
s._store.validated = !0;
|
|
760
|
+
var a = B3(r);
|
|
761
|
+
if (Y1[a])
|
|
762
762
|
return;
|
|
763
|
-
|
|
763
|
+
Y1[a] = !0;
|
|
764
764
|
var v = "";
|
|
765
|
-
|
|
765
|
+
s && s._owner && s._owner !== M1.current && (v = " It was passed a child from " + P(s._owner.type) + "."), W(s), g('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', a, v), W(null);
|
|
766
766
|
}
|
|
767
767
|
}
|
|
768
|
-
function
|
|
768
|
+
function z1(s, r) {
|
|
769
769
|
{
|
|
770
|
-
if (typeof
|
|
770
|
+
if (typeof s != "object")
|
|
771
771
|
return;
|
|
772
|
-
if (
|
|
773
|
-
for (var a = 0; a <
|
|
774
|
-
var v =
|
|
775
|
-
|
|
772
|
+
if (p1(s))
|
|
773
|
+
for (var a = 0; a < s.length; a++) {
|
|
774
|
+
var v = s[a];
|
|
775
|
+
Z1(v) && J1(v, r);
|
|
776
776
|
}
|
|
777
|
-
else if (
|
|
778
|
-
|
|
779
|
-
else if (
|
|
780
|
-
var
|
|
781
|
-
if (typeof
|
|
782
|
-
for (var j =
|
|
783
|
-
|
|
777
|
+
else if (Z1(s))
|
|
778
|
+
s._store && (s._store.validated = !0);
|
|
779
|
+
else if (s) {
|
|
780
|
+
var M = J(s);
|
|
781
|
+
if (typeof M == "function" && M !== s.entries)
|
|
782
|
+
for (var j = M.call(s), p; !(p = j.next()).done; )
|
|
783
|
+
Z1(p.value) && J1(p.value, r);
|
|
784
784
|
}
|
|
785
785
|
}
|
|
786
786
|
}
|
|
787
|
-
function
|
|
787
|
+
function T3(s) {
|
|
788
788
|
{
|
|
789
|
-
var
|
|
790
|
-
if (
|
|
789
|
+
var r = s.type;
|
|
790
|
+
if (r == null || typeof r == "string")
|
|
791
791
|
return;
|
|
792
792
|
var a;
|
|
793
|
-
if (typeof
|
|
794
|
-
a =
|
|
795
|
-
else if (typeof
|
|
793
|
+
if (typeof r == "function")
|
|
794
|
+
a = r.propTypes;
|
|
795
|
+
else if (typeof r == "object" && (r.$$typeof === u || // Note: Memo only checks outer props here.
|
|
796
796
|
// Inner props are checked in the reconciler.
|
|
797
|
-
|
|
798
|
-
a =
|
|
797
|
+
r.$$typeof === b))
|
|
798
|
+
a = r.propTypes;
|
|
799
799
|
else
|
|
800
800
|
return;
|
|
801
801
|
if (a) {
|
|
802
|
-
var v = P(
|
|
803
|
-
|
|
804
|
-
} else if (
|
|
805
|
-
|
|
806
|
-
var
|
|
807
|
-
g("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?",
|
|
808
|
-
}
|
|
809
|
-
typeof
|
|
802
|
+
var v = P(r);
|
|
803
|
+
Z3(a, s.props, "prop", v, s);
|
|
804
|
+
} else if (r.PropTypes !== void 0 && !m1) {
|
|
805
|
+
m1 = !0;
|
|
806
|
+
var M = P(r);
|
|
807
|
+
g("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", M || "Unknown");
|
|
808
|
+
}
|
|
809
|
+
typeof r.getDefaultProps == "function" && !r.getDefaultProps.isReactClassApproved && g("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
|
810
810
|
}
|
|
811
811
|
}
|
|
812
|
-
function
|
|
812
|
+
function D3(s) {
|
|
813
813
|
{
|
|
814
|
-
for (var
|
|
815
|
-
var v =
|
|
814
|
+
for (var r = Object.keys(s.props), a = 0; a < r.length; a++) {
|
|
815
|
+
var v = r[a];
|
|
816
816
|
if (v !== "children" && v !== "key") {
|
|
817
|
-
W(
|
|
817
|
+
W(s), g("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", v), W(null);
|
|
818
818
|
break;
|
|
819
819
|
}
|
|
820
820
|
}
|
|
821
|
-
|
|
821
|
+
s.ref !== null && (W(s), g("Invalid attribute `ref` supplied to `React.Fragment`."), W(null));
|
|
822
822
|
}
|
|
823
823
|
}
|
|
824
|
-
var
|
|
825
|
-
function
|
|
824
|
+
var X1 = {};
|
|
825
|
+
function Q1(s, r, a, v, M, j) {
|
|
826
826
|
{
|
|
827
|
-
var p =
|
|
827
|
+
var p = g3(s);
|
|
828
828
|
if (!p) {
|
|
829
829
|
var w = "";
|
|
830
|
-
(
|
|
831
|
-
var $ =
|
|
832
|
-
$ ? w += $ : w +=
|
|
830
|
+
(s === void 0 || typeof s == "object" && s !== null && Object.keys(s).length === 0) && (w += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");
|
|
831
|
+
var $ = A3(M);
|
|
832
|
+
$ ? w += $ : w += q1();
|
|
833
833
|
var I;
|
|
834
|
-
|
|
834
|
+
s === null ? I = "null" : p1(s) ? I = "array" : s !== void 0 && s.$$typeof === e ? (I = "<" + (P(s.type) || "Unknown") + " />", w = " Did you accidentally export a JSX literal instead of a component?") : I = typeof s, g("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", I, w);
|
|
835
835
|
}
|
|
836
|
-
var R = $
|
|
836
|
+
var R = $3(s, r, a, M, j);
|
|
837
837
|
if (R == null)
|
|
838
838
|
return R;
|
|
839
839
|
if (p) {
|
|
840
|
-
var
|
|
841
|
-
if (
|
|
840
|
+
var D = r.children;
|
|
841
|
+
if (D !== void 0)
|
|
842
842
|
if (v)
|
|
843
|
-
if (
|
|
844
|
-
for (var H = 0; H <
|
|
845
|
-
|
|
846
|
-
Object.freeze && Object.freeze(
|
|
843
|
+
if (p1(D)) {
|
|
844
|
+
for (var H = 0; H < D.length; H++)
|
|
845
|
+
z1(D[H], s);
|
|
846
|
+
Object.freeze && Object.freeze(D);
|
|
847
847
|
} else
|
|
848
848
|
g("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
|
849
849
|
else
|
|
850
|
-
|
|
851
|
-
}
|
|
852
|
-
if (N.call(
|
|
853
|
-
var U = P(
|
|
854
|
-
return
|
|
855
|
-
}),
|
|
856
|
-
if (!
|
|
857
|
-
var
|
|
850
|
+
z1(D, s);
|
|
851
|
+
}
|
|
852
|
+
if (N.call(r, "key")) {
|
|
853
|
+
var U = P(s), B = Object.keys(r).filter(function(U3) {
|
|
854
|
+
return U3 !== "key";
|
|
855
|
+
}), j1 = B.length > 0 ? "{key: someKey, " + B.join(": ..., ") + ": ...}" : "{key: someKey}";
|
|
856
|
+
if (!X1[U + j1]) {
|
|
857
|
+
var k3 = B.length > 0 ? "{" + B.join(": ..., ") + ": ...}" : "{}";
|
|
858
858
|
g(`A props object containing a "key" prop is being spread into JSX:
|
|
859
859
|
let props = %s;
|
|
860
860
|
<%s {...props} />
|
|
861
861
|
React keys must be passed directly to JSX without using spread:
|
|
862
862
|
let props = %s;
|
|
863
|
-
<%s key={someKey} {...props} />`,
|
|
863
|
+
<%s key={someKey} {...props} />`, j1, U, k3, U), X1[U + j1] = !0;
|
|
864
864
|
}
|
|
865
865
|
}
|
|
866
|
-
return
|
|
866
|
+
return s === o ? D3(R) : T3(R), R;
|
|
867
867
|
}
|
|
868
868
|
}
|
|
869
|
-
function
|
|
870
|
-
return
|
|
869
|
+
function P3(s, r, a) {
|
|
870
|
+
return Q1(s, r, a, !0);
|
|
871
871
|
}
|
|
872
|
-
function
|
|
873
|
-
return
|
|
872
|
+
function O3(s, r, a) {
|
|
873
|
+
return Q1(s, r, a, !1);
|
|
874
874
|
}
|
|
875
|
-
var
|
|
876
|
-
|
|
877
|
-
}()),
|
|
875
|
+
var V3 = O3, F3 = P3;
|
|
876
|
+
t1.Fragment = o, t1.jsx = V3, t1.jsxs = F3;
|
|
877
|
+
}()), t1;
|
|
878
878
|
}
|
|
879
|
-
var
|
|
879
|
+
var n1 = {};
|
|
880
880
|
/**
|
|
881
881
|
* @license React
|
|
882
882
|
* react-jsx-runtime.production.min.js
|
|
@@ -886,27 +886,27 @@ var n3 = {};
|
|
|
886
886
|
* This source code is licensed under the MIT license found in the
|
|
887
887
|
* LICENSE file in the root directory of this source tree.
|
|
888
888
|
*/
|
|
889
|
-
var
|
|
890
|
-
function
|
|
891
|
-
if (
|
|
892
|
-
return
|
|
893
|
-
|
|
894
|
-
var t =
|
|
895
|
-
function d(f, u,
|
|
896
|
-
var
|
|
897
|
-
|
|
898
|
-
for (
|
|
899
|
-
|
|
889
|
+
var e3;
|
|
890
|
+
function C2() {
|
|
891
|
+
if (e3)
|
|
892
|
+
return n1;
|
|
893
|
+
e3 = 1;
|
|
894
|
+
var t = s3, e = Symbol.for("react.element"), c = Symbol.for("react.fragment"), o = Object.prototype.hasOwnProperty, l = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, i = { key: !0, ref: !0, __self: !0, __source: !0 };
|
|
895
|
+
function d(f, u, S) {
|
|
896
|
+
var C, b = {}, A = null, T = null;
|
|
897
|
+
S !== void 0 && (A = "" + S), u.key !== void 0 && (A = "" + u.key), u.ref !== void 0 && (T = u.ref);
|
|
898
|
+
for (C in u)
|
|
899
|
+
o.call(u, C) && !i.hasOwnProperty(C) && (b[C] = u[C]);
|
|
900
900
|
if (f && f.defaultProps)
|
|
901
|
-
for (
|
|
902
|
-
b[
|
|
903
|
-
return { $$typeof: e, type: f, key: A, ref:
|
|
901
|
+
for (C in u = f.defaultProps, u)
|
|
902
|
+
b[C] === void 0 && (b[C] = u[C]);
|
|
903
|
+
return { $$typeof: e, type: f, key: A, ref: T, props: b, _owner: l.current };
|
|
904
904
|
}
|
|
905
|
-
return
|
|
905
|
+
return n1.Fragment = c, n1.jsx = d, n1.jsxs = d, n1;
|
|
906
906
|
}
|
|
907
|
-
process.env.NODE_ENV === "production" ?
|
|
908
|
-
var n =
|
|
909
|
-
const
|
|
907
|
+
process.env.NODE_ENV === "production" ? I1.exports = C2() : I1.exports = j2();
|
|
908
|
+
var n = I1.exports;
|
|
909
|
+
const S2 = () => /* @__PURE__ */ n.jsx(n.Fragment, { children: /* @__PURE__ */ n.jsxs("div", { className: "disconnected-message", children: [
|
|
910
910
|
/* @__PURE__ */ n.jsx("h1", { children: "Disconnected" }),
|
|
911
911
|
/* @__PURE__ */ n.jsx("p", { children: "Reconnecting..." })
|
|
912
912
|
] }) });
|
|
@@ -918,7 +918,7 @@ class b2 {
|
|
|
918
918
|
_(this, "expiry", "current-uuid-expires");
|
|
919
919
|
}
|
|
920
920
|
}
|
|
921
|
-
const
|
|
921
|
+
const t3 = new b2(), d3 = X3({
|
|
922
922
|
sendMessage: () => null,
|
|
923
923
|
sendSimpleMessage: () => null,
|
|
924
924
|
addEventHandler: () => null,
|
|
@@ -931,28 +931,28 @@ function y2(t, e) {
|
|
|
931
931
|
sessionStorage.setItem(t, e);
|
|
932
932
|
}
|
|
933
933
|
const R2 = ({ children: t }) => {
|
|
934
|
-
const [e,
|
|
934
|
+
const [e, c] = q(), o = p2(), l = x2(), i = M2(), d = Z2(), f = g2(), u = s1(null), [S, C] = q(), b = s1({}), A = u1(
|
|
935
935
|
async (m) => {
|
|
936
|
-
await
|
|
936
|
+
await b1.get(`${m}/ui/joinroom?token=${e}`).then((g) => {
|
|
937
937
|
g.status === 200 && g.data && F.dispatch(K.setRoomData(g.data));
|
|
938
938
|
}).catch((g) => {
|
|
939
939
|
console.log(g), g.repsonse && g.response.status === 498 && console.error("Invalid token. Unable to join room");
|
|
940
940
|
});
|
|
941
941
|
},
|
|
942
942
|
[e]
|
|
943
|
-
),
|
|
943
|
+
), T = u1(
|
|
944
944
|
(m, g) => {
|
|
945
|
-
u.current &&
|
|
945
|
+
u.current && o && u.current.send(JSON.stringify({ type: m, clientId: i, content: g }));
|
|
946
946
|
},
|
|
947
|
-
[
|
|
947
|
+
[o, i]
|
|
948
948
|
), V = (m, g) => {
|
|
949
|
-
|
|
950
|
-
}, Y =
|
|
949
|
+
T(m, { value: g });
|
|
950
|
+
}, Y = u1(
|
|
951
951
|
(m, g, O) => {
|
|
952
952
|
b.current[m] || (b.current[m] = {}), b.current[m][g] = O, console.log("event handler added", m, g);
|
|
953
953
|
},
|
|
954
954
|
[]
|
|
955
|
-
), J =
|
|
955
|
+
), J = u1(
|
|
956
956
|
(m, g) => {
|
|
957
957
|
b.current[m] && (delete b.current[m][g], console.log("event handler removed", m, g));
|
|
958
958
|
},
|
|
@@ -960,9 +960,9 @@ const R2 = ({ children: t }) => {
|
|
|
960
960
|
);
|
|
961
961
|
return G(() => {
|
|
962
962
|
let g = new URLSearchParams(window.location.search).get("token");
|
|
963
|
-
g ? (console.log("saving token: ", g), y2(
|
|
963
|
+
g ? (console.log("saving token: ", g), y2(t3.uuid, g)) : (g = I2(t3.uuid), console.log("loading token: ", g)), c(g), d();
|
|
964
964
|
}, []), G(() => {
|
|
965
|
-
if (!(!f.apiPath ||
|
|
965
|
+
if (!(!f.apiPath || S || !e)) {
|
|
966
966
|
if (A(f.apiPath), !u.current) {
|
|
967
967
|
const g = `${f.apiPath.replace("http", "ws")}/ui/join/${e}`, O = new WebSocket(g);
|
|
968
968
|
u.current = O, O.onopen = () => {
|
|
@@ -976,7 +976,7 @@ const R2 = ({ children: t }) => {
|
|
|
976
976
|
console.log("WebSocket closed by client.");
|
|
977
977
|
return;
|
|
978
978
|
}
|
|
979
|
-
|
|
979
|
+
S || (F.dispatch(K.setWebsocketIsConnected(!1)), C(!0), setTimeout(() => C(void 0), 5e3));
|
|
980
980
|
}, O.onmessage = (z) => {
|
|
981
981
|
try {
|
|
982
982
|
const E = JSON.parse(z.data);
|
|
@@ -998,15 +998,15 @@ const R2 = ({ children: t }) => {
|
|
|
998
998
|
else if (E.type.startsWith("/event/")) {
|
|
999
999
|
console.log("event message received", E);
|
|
1000
1000
|
const X = b.current[E.type];
|
|
1001
|
-
X || console.log("no handlers found for event type", E.type), X && Object.values(X).forEach((
|
|
1001
|
+
X || console.log("no handlers found for event type", E.type), X && Object.values(X).forEach((v1) => {
|
|
1002
1002
|
try {
|
|
1003
|
-
|
|
1004
|
-
} catch (
|
|
1005
|
-
console.error(
|
|
1003
|
+
v1(E);
|
|
1004
|
+
} catch (h1) {
|
|
1005
|
+
console.error(h1);
|
|
1006
1006
|
}
|
|
1007
1007
|
});
|
|
1008
1008
|
} else
|
|
1009
|
-
E.type.startsWith("/room/") ? F.dispatch(l2.setRoomState(E)) : E.type.startsWith("/device/") && F.dispatch(
|
|
1009
|
+
E.type.startsWith("/room/") ? F.dispatch(l2.setRoomState(E)) : E.type.startsWith("/device/") && F.dispatch(s2.setDeviceState(E));
|
|
1010
1010
|
} catch (E) {
|
|
1011
1011
|
console.log(E);
|
|
1012
1012
|
}
|
|
@@ -1016,24 +1016,24 @@ const R2 = ({ children: t }) => {
|
|
|
1016
1016
|
u.current && u.current.close(), u.current = null;
|
|
1017
1017
|
};
|
|
1018
1018
|
}
|
|
1019
|
-
}, [f.apiPath, A, e,
|
|
1020
|
-
l &&
|
|
1021
|
-
}, [l,
|
|
1022
|
-
},
|
|
1019
|
+
}, [f.apiPath, A, e, S]), G(() => {
|
|
1020
|
+
l && T(`/room/${l}/status`, null);
|
|
1021
|
+
}, [l, T]), /* @__PURE__ */ n.jsx(d3.Provider, { value: { sendMessage: T, sendSimpleMessage: V, addEventHandler: Y, removeEventHandler: J }, children: o ? t : /* @__PURE__ */ n.jsx(S2, {}) });
|
|
1022
|
+
}, n6 = ({ children: t }) => /* @__PURE__ */ n.jsx(z3, { store: F, children: /* @__PURE__ */ n.jsx(R2, { children: t }) });
|
|
1023
1023
|
function y() {
|
|
1024
|
-
return
|
|
1024
|
+
return Q3(d3);
|
|
1025
1025
|
}
|
|
1026
1026
|
function E2({
|
|
1027
1027
|
onPress: t,
|
|
1028
1028
|
onRelease: e,
|
|
1029
|
-
onHold:
|
|
1030
|
-
holdTimeMs:
|
|
1029
|
+
onHold: c,
|
|
1030
|
+
holdTimeMs: o = 500
|
|
1031
1031
|
}) {
|
|
1032
|
-
const l =
|
|
1032
|
+
const l = s1(null), i = s1(!1);
|
|
1033
1033
|
function d() {
|
|
1034
1034
|
i.current = !0, t == null || t(), l.current = setTimeout(() => {
|
|
1035
|
-
|
|
1036
|
-
},
|
|
1035
|
+
c == null || c(), l.current = null;
|
|
1036
|
+
}, o);
|
|
1037
1037
|
}
|
|
1038
1038
|
function f() {
|
|
1039
1039
|
i.current = !1, e == null || e(), l.current && (clearTimeout(l.current), l.current = null);
|
|
@@ -1048,46 +1048,46 @@ function E2({
|
|
|
1048
1048
|
};
|
|
1049
1049
|
}
|
|
1050
1050
|
function h(t, e) {
|
|
1051
|
-
const { sendMessage:
|
|
1051
|
+
const { sendMessage: o } = y(), l = s1(null);
|
|
1052
1052
|
function i() {
|
|
1053
|
-
|
|
1054
|
-
|
|
1053
|
+
o(`${t}/${e}`, { value: "pressed" }), l.current || (l.current = setInterval(() => {
|
|
1054
|
+
o(`${t}/${e}`, { value: "held" });
|
|
1055
1055
|
}, 250));
|
|
1056
1056
|
}
|
|
1057
1057
|
function d() {
|
|
1058
|
-
l.current && (clearInterval(l.current), l.current = null),
|
|
1058
|
+
l.current && (clearInterval(l.current), l.current = null), o(`${t}/${e}`, { value: "released" });
|
|
1059
1059
|
}
|
|
1060
1060
|
return E2({ onPress: i, onRelease: d });
|
|
1061
1061
|
}
|
|
1062
|
-
function
|
|
1063
|
-
const { sendMessage:
|
|
1062
|
+
function v3(t, e) {
|
|
1063
|
+
const { sendMessage: c, sendSimpleMessage: o } = y(), l = h(`${t}`, "volumeUp"), i = h(`${t}`, "volumeDown");
|
|
1064
1064
|
return e ? {
|
|
1065
1065
|
volumeState: e,
|
|
1066
1066
|
volumeUp: l,
|
|
1067
1067
|
volumeDown: i,
|
|
1068
|
-
setLevel: (
|
|
1069
|
-
muteToggle: () =>
|
|
1070
|
-
muteOn: () =>
|
|
1071
|
-
muteOff: () =>
|
|
1068
|
+
setLevel: (C) => o(`${t}/level`, C),
|
|
1069
|
+
muteToggle: () => c(`${t}/muteToggle`, null),
|
|
1070
|
+
muteOn: () => c(`${t}/muteOn`, null),
|
|
1071
|
+
muteOff: () => c(`${t}/muteOff`, null)
|
|
1072
1072
|
} : void 0;
|
|
1073
1073
|
}
|
|
1074
|
-
function
|
|
1075
|
-
const { sendMessage:
|
|
1074
|
+
function c6(t, e) {
|
|
1075
|
+
const { sendMessage: c, sendSimpleMessage: o } = y(), l = h(`${t}`, "volumeUp"), i = h(`${t}`, "volumeDown");
|
|
1076
1076
|
return e ? {
|
|
1077
1077
|
volumeState: e,
|
|
1078
1078
|
volumeUp: l,
|
|
1079
1079
|
volumeDown: i,
|
|
1080
|
-
setLevel: (
|
|
1081
|
-
muteToggle: () =>
|
|
1082
|
-
muteOn: () =>
|
|
1083
|
-
muteOff: () =>
|
|
1080
|
+
setLevel: (C) => o(`${t}/level`, C),
|
|
1081
|
+
muteToggle: () => c(`${t}/muteToggle`, null),
|
|
1082
|
+
muteOn: () => c(`${t}/muteOn`, null),
|
|
1083
|
+
muteOff: () => c(`${t}/muteOff`, null)
|
|
1084
1084
|
} : void 0;
|
|
1085
1085
|
}
|
|
1086
1086
|
function _2(t) {
|
|
1087
|
-
const e = L(t),
|
|
1088
|
-
return
|
|
1087
|
+
const e = L(t), c = `/device/${t}`;
|
|
1088
|
+
return v3(c, e == null ? void 0 : e.volume);
|
|
1089
1089
|
}
|
|
1090
|
-
function
|
|
1090
|
+
function h3(t) {
|
|
1091
1091
|
const { sendMessage: e } = y();
|
|
1092
1092
|
return { powerOn: () => {
|
|
1093
1093
|
e(`/device/${t}/powerOn`, null);
|
|
@@ -1097,31 +1097,31 @@ function h1(t) {
|
|
|
1097
1097
|
e(`/device/${t}/powerToggle`, null);
|
|
1098
1098
|
} };
|
|
1099
1099
|
}
|
|
1100
|
-
function
|
|
1101
|
-
const { sendMessage: e } = y(),
|
|
1102
|
-
return console.log("deviceState",
|
|
1100
|
+
function y1(t) {
|
|
1101
|
+
const { sendMessage: e } = y(), c = L(t);
|
|
1102
|
+
return console.log("deviceState", c), c ? { itemsState: c, selectItem: (l) => {
|
|
1103
1103
|
e(`/device/${t}/${l}`, null);
|
|
1104
1104
|
} } : void 0;
|
|
1105
1105
|
}
|
|
1106
1106
|
function L2(t) {
|
|
1107
|
-
const { sendMessage: e } = y(),
|
|
1107
|
+
const { sendMessage: e } = y(), c = L(t), o = () => {
|
|
1108
1108
|
e(`/device/${t}/setDefaultChannelLevels`, null);
|
|
1109
1109
|
}, l = () => {
|
|
1110
|
-
if ((
|
|
1110
|
+
if ((c == null ? void 0 : c.levelControls) === void 0)
|
|
1111
1111
|
return;
|
|
1112
|
-
Object.keys(
|
|
1112
|
+
Object.keys(c == null ? void 0 : c.levelControls).forEach((f) => {
|
|
1113
1113
|
e(`/device/${t}/${f}/fullStatus`, null);
|
|
1114
1114
|
});
|
|
1115
1115
|
};
|
|
1116
|
-
return
|
|
1116
|
+
return c ? { levelControls: c.levelControls, setDefaultChannelLevels: o, getFullStatus: l } : void 0;
|
|
1117
1117
|
}
|
|
1118
|
-
function
|
|
1119
|
-
const e = L(t),
|
|
1118
|
+
function s6(t) {
|
|
1119
|
+
const e = L(t), c = h3(t), o = y1(t), l = y1(t), i = _2(t), d = L2(t);
|
|
1120
1120
|
if (e)
|
|
1121
1121
|
return {
|
|
1122
1122
|
avrState: e,
|
|
1123
|
-
powerControl:
|
|
1124
|
-
inputControl:
|
|
1123
|
+
powerControl: c,
|
|
1124
|
+
inputControl: o,
|
|
1125
1125
|
surroundSoundModes: l,
|
|
1126
1126
|
surroundChannels: d,
|
|
1127
1127
|
mainVolumeControl: i
|
|
@@ -1133,48 +1133,48 @@ function o6(t) {
|
|
|
1133
1133
|
return { endpointState: e };
|
|
1134
1134
|
}
|
|
1135
1135
|
function r6(t) {
|
|
1136
|
-
const e = `/device/${t}`,
|
|
1137
|
-
return { channelUp:
|
|
1136
|
+
const e = `/device/${t}`, c = h(e, "chanUp"), o = h(e, "chanDown"), l = h(e, "lastChan"), i = h(e, "guide"), d = h(e, "info"), f = h(e, "exit");
|
|
1137
|
+
return { channelUp: c, channelDown: o, lastChannel: l, guide: i, info: d, exit: f };
|
|
1138
1138
|
}
|
|
1139
|
-
function
|
|
1140
|
-
const e = `/device/${t}`,
|
|
1141
|
-
return { red:
|
|
1139
|
+
function l6(t) {
|
|
1140
|
+
const e = `/device/${t}`, c = h(e, "red"), o = h(e, "green"), l = h(e, "yellow"), i = h(e, "blue");
|
|
1141
|
+
return { red: c, green: o, yellow: l, blue: i };
|
|
1142
1142
|
}
|
|
1143
|
-
function
|
|
1143
|
+
function i6(t) {
|
|
1144
1144
|
const e = L(t);
|
|
1145
1145
|
if (e)
|
|
1146
1146
|
return {
|
|
1147
1147
|
communicationMonitorState: e
|
|
1148
1148
|
};
|
|
1149
1149
|
}
|
|
1150
|
-
function
|
|
1151
|
-
const e = `/device/${t}`,
|
|
1152
|
-
return { up:
|
|
1150
|
+
function a6(t) {
|
|
1151
|
+
const e = `/device/${t}`, c = h(e, "up"), o = h(e, "down"), l = h(e, "left"), i = h(e, "right"), d = h(e, "select"), f = h(e, "menu"), u = h(e, "exit");
|
|
1152
|
+
return { up: c, down: o, left: l, right: i, select: d, menu: f, exit: u };
|
|
1153
1153
|
}
|
|
1154
|
-
function
|
|
1154
|
+
function u6(t) {
|
|
1155
1155
|
const e = L(t);
|
|
1156
1156
|
if (e)
|
|
1157
1157
|
return e.deviceInfo || void 0;
|
|
1158
1158
|
}
|
|
1159
|
-
function
|
|
1160
|
-
const e = `/device/${t}`,
|
|
1161
|
-
return { dvrList:
|
|
1159
|
+
function d6(t) {
|
|
1160
|
+
const e = `/device/${t}`, c = h(e, "dvrList"), o = h(e, "record");
|
|
1161
|
+
return { dvrList: c, record: o };
|
|
1162
1162
|
}
|
|
1163
|
-
const
|
|
1164
|
-
const [e,
|
|
1163
|
+
const v6 = ({ className: t }) => {
|
|
1164
|
+
const [e, c] = q();
|
|
1165
1165
|
return G(() => {
|
|
1166
1166
|
setInterval(() => {
|
|
1167
|
-
const
|
|
1168
|
-
o
|
|
1167
|
+
const o = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
|
|
1168
|
+
c(o);
|
|
1169
1169
|
}, 1e3);
|
|
1170
1170
|
}, []), /* @__PURE__ */ n.jsxs("div", { className: t, children: [
|
|
1171
1171
|
e,
|
|
1172
1172
|
" new change"
|
|
1173
1173
|
] });
|
|
1174
1174
|
};
|
|
1175
|
-
function
|
|
1176
|
-
const { sendMessage: e } = y(),
|
|
1177
|
-
return
|
|
1175
|
+
function h6(t) {
|
|
1176
|
+
const { sendMessage: e } = y(), c = L(t);
|
|
1177
|
+
return c ? { roomCombinerState: c, setAutoMode: () => {
|
|
1178
1178
|
e(`/device/${t}/setAutoMode`, null);
|
|
1179
1179
|
}, setManualMode: () => {
|
|
1180
1180
|
e(`/device/${t}/setManualMode`, null);
|
|
@@ -1186,71 +1186,71 @@ function d6(t) {
|
|
|
1186
1186
|
e(`/device/${t}/setRoomCombinationScenario`, u);
|
|
1187
1187
|
} } : void 0;
|
|
1188
1188
|
}
|
|
1189
|
-
function
|
|
1190
|
-
const { sendMessage: e, sendSimpleMessage:
|
|
1191
|
-
return
|
|
1192
|
-
levelState:
|
|
1193
|
-
setLevel: (u,
|
|
1189
|
+
function g6(t) {
|
|
1190
|
+
const { sendMessage: e, sendSimpleMessage: c } = y(), o = L(t);
|
|
1191
|
+
return o ? {
|
|
1192
|
+
levelState: o,
|
|
1193
|
+
setLevel: (u, S) => c(`${u}/level`, S),
|
|
1194
1194
|
muteToggle: (u) => e(`${u}/muteToggle`, null),
|
|
1195
1195
|
muteOn: (u) => e(`${u}/muteOn`, null),
|
|
1196
1196
|
muteOff: (u) => e(`${u}/muteOff`, null)
|
|
1197
1197
|
} : void 0;
|
|
1198
1198
|
}
|
|
1199
|
-
function
|
|
1200
|
-
const { sendMessage: e } = y(),
|
|
1201
|
-
return
|
|
1199
|
+
function f6(t) {
|
|
1200
|
+
const { sendMessage: e } = y(), c = L(t);
|
|
1201
|
+
return c ? { lightingState: c, selectScene: (l) => {
|
|
1202
1202
|
e(`/device/${t}/selectScene`, l);
|
|
1203
1203
|
} } : void 0;
|
|
1204
1204
|
}
|
|
1205
|
-
function
|
|
1206
|
-
const { sendMessage: e } = y(),
|
|
1207
|
-
return
|
|
1205
|
+
function w6(t) {
|
|
1206
|
+
const { sendMessage: e } = y(), c = L(t);
|
|
1207
|
+
return c ? { matrixRoutingState: c, setRoute: (l) => {
|
|
1208
1208
|
e(`/device/${t}/route`, l);
|
|
1209
1209
|
} } : void 0;
|
|
1210
1210
|
}
|
|
1211
|
-
function
|
|
1211
|
+
function p6(t) {
|
|
1212
1212
|
const { sendMessage: e } = y();
|
|
1213
1213
|
return { closeApp: () => {
|
|
1214
1214
|
e(`/device/${t}/closeWebViewController`, null);
|
|
1215
1215
|
} };
|
|
1216
1216
|
}
|
|
1217
|
-
function
|
|
1218
|
-
const e = `/device/${t}`,
|
|
1219
|
-
return { digit0:
|
|
1217
|
+
function x6(t) {
|
|
1218
|
+
const e = `/device/${t}`, c = h(e, "num0"), o = h(e, "num1"), l = h(e, "num2"), i = h(e, "num3"), d = h(e, "num4"), f = h(e, "num5"), u = h(e, "num6"), S = h(e, "num7"), C = h(e, "num8"), b = h(e, "num9"), A = h(e, "numDash"), T = h(e, "numEnter");
|
|
1219
|
+
return { digit0: c, digit1: o, digit2: l, digit3: i, digit4: d, digit5: f, digit6: u, digit7: S, digit8: C, digit9: b, keypadAccessoryButton1: A, keypadAccessoryButton2: T };
|
|
1220
1220
|
}
|
|
1221
|
-
function
|
|
1222
|
-
const { sendMessage: e } = y(),
|
|
1223
|
-
return
|
|
1221
|
+
function M6(t) {
|
|
1222
|
+
const { sendMessage: e } = y(), c = L(t);
|
|
1223
|
+
return c ? { projectorScreenLiftControlState: c, raise: () => {
|
|
1224
1224
|
e(`/device/${t}/raise`, null);
|
|
1225
1225
|
}, lower: () => {
|
|
1226
1226
|
e(`/device/${t}/lower`, null);
|
|
1227
1227
|
} } : void 0;
|
|
1228
1228
|
}
|
|
1229
|
-
function
|
|
1230
|
-
const { sendMessage: e } = y(),
|
|
1231
|
-
return
|
|
1229
|
+
function m6(t) {
|
|
1230
|
+
const { sendMessage: e } = y(), c = R1(t);
|
|
1231
|
+
return c ? { roomEventScheduleState: c, save: (l) => {
|
|
1232
1232
|
e(`/room/${t}/saveScheduledEvents`, l);
|
|
1233
1233
|
} } : void 0;
|
|
1234
1234
|
}
|
|
1235
|
-
function
|
|
1235
|
+
function Z6(t) {
|
|
1236
1236
|
const { sendMessage: e } = y();
|
|
1237
|
-
return { runDirectRoute: (
|
|
1238
|
-
e(`/room/${t}/directRoute`,
|
|
1237
|
+
return { runDirectRoute: (o) => {
|
|
1238
|
+
e(`/room/${t}/directRoute`, o);
|
|
1239
1239
|
} };
|
|
1240
1240
|
}
|
|
1241
|
-
function
|
|
1241
|
+
function j6(t) {
|
|
1242
1242
|
const { sendMessage: e } = y();
|
|
1243
1243
|
return { routingState: L(t), runRoute: (l) => {
|
|
1244
1244
|
e(`/room/${t}/source`, l);
|
|
1245
1245
|
} };
|
|
1246
1246
|
}
|
|
1247
|
-
function
|
|
1248
|
-
const e = `/device/${t}`,
|
|
1249
|
-
return { dvrList:
|
|
1247
|
+
function C6(t) {
|
|
1248
|
+
const e = `/device/${t}`, c = h(e, "chanUp"), o = h(e, "chanDown");
|
|
1249
|
+
return { dvrList: c, replay: o };
|
|
1250
1250
|
}
|
|
1251
|
-
function
|
|
1252
|
-
const { sendMessage: e } = y(),
|
|
1253
|
-
return
|
|
1251
|
+
function S6(t) {
|
|
1252
|
+
const { sendMessage: e } = y(), c = L(t);
|
|
1253
|
+
return c ? { shadeState: c, shadeUp: () => {
|
|
1254
1254
|
e(`/device/${t}/shadeUp`, null);
|
|
1255
1255
|
}, shadeDown: () => {
|
|
1256
1256
|
e(`/device/${t}/shadeDown`, null);
|
|
@@ -1258,9 +1258,9 @@ function j6(t) {
|
|
|
1258
1258
|
e(`/device/${t}/stopOrPreset`, null);
|
|
1259
1259
|
} } : void 0;
|
|
1260
1260
|
}
|
|
1261
|
-
function
|
|
1262
|
-
const { sendMessage: e } = y(),
|
|
1263
|
-
return
|
|
1261
|
+
function b6(t) {
|
|
1262
|
+
const { sendMessage: e } = y(), c = R1(t);
|
|
1263
|
+
return c ? { shutdownPromptTimerState: c, setShutdownPromptSeconds: (f) => {
|
|
1264
1264
|
e(`/room/${t}/setShutdownPromptSeconds`, f);
|
|
1265
1265
|
}, shutdownStart: () => {
|
|
1266
1266
|
e(`/room/${t}/shutdownStart`, null);
|
|
@@ -1270,91 +1270,91 @@ function S6(t) {
|
|
|
1270
1270
|
e(`/room/${t}/shutdownCancel`, null);
|
|
1271
1271
|
} } : void 0;
|
|
1272
1272
|
}
|
|
1273
|
-
function
|
|
1274
|
-
const { sendMessage: e } = y(),
|
|
1275
|
-
return
|
|
1273
|
+
function I6(t) {
|
|
1274
|
+
const { sendMessage: e } = y(), c = L(t);
|
|
1275
|
+
return c ? { switchedOutputState: c, on: () => {
|
|
1276
1276
|
e(`/device/${t}/on`, null);
|
|
1277
1277
|
}, off: () => {
|
|
1278
1278
|
e(`/device/${t}/off`, null);
|
|
1279
1279
|
} } : void 0;
|
|
1280
1280
|
}
|
|
1281
|
-
function
|
|
1282
|
-
const { sendMessage: e } = y(),
|
|
1283
|
-
return
|
|
1281
|
+
function y6(t) {
|
|
1282
|
+
const { sendMessage: e } = y(), c = R1(t);
|
|
1283
|
+
return c ? { techPasswordState: c, validatePassword: (i) => {
|
|
1284
1284
|
e(`/room/${t}/validateTechPassword`, { password: i });
|
|
1285
1285
|
}, setPassword: (i, d) => {
|
|
1286
1286
|
e(`/room/${t}/setTechPassword`, { oldPassword: i, newPassword: d });
|
|
1287
1287
|
} } : void 0;
|
|
1288
1288
|
}
|
|
1289
|
-
function
|
|
1290
|
-
const e = `/device/${t}`,
|
|
1291
|
-
return { play:
|
|
1289
|
+
function R6(t) {
|
|
1290
|
+
const e = `/device/${t}`, c = h(e, "play"), o = h(e, "pause"), l = h(e, "stop"), i = h(e, "prevTrack"), d = h(e, "nextTrack"), f = h(e, "rewind"), u = h(e, "ffwd"), S = h(e, "record");
|
|
1291
|
+
return { play: c, pause: o, stop: l, prevTrack: i, nextTrack: d, rewind: f, fastForward: u, record: S };
|
|
1292
1292
|
}
|
|
1293
|
-
function
|
|
1294
|
-
const e = L(t), { sendMessage:
|
|
1293
|
+
function E6(t) {
|
|
1294
|
+
const e = L(t), { sendMessage: c } = y();
|
|
1295
1295
|
return e ? {
|
|
1296
1296
|
touchpanelState: e,
|
|
1297
1297
|
appControl: { hideApp: () => {
|
|
1298
|
-
|
|
1298
|
+
c(`/device/${t}/hideApp`, null);
|
|
1299
1299
|
}, openApp: () => {
|
|
1300
|
-
|
|
1300
|
+
c(`/device/${t}/openApp`, null);
|
|
1301
1301
|
}, closeApp: () => {
|
|
1302
|
-
|
|
1302
|
+
c(`/device/${t}/closeApp`, null);
|
|
1303
1303
|
} },
|
|
1304
1304
|
zoomControl: { endCall: () => {
|
|
1305
|
-
|
|
1305
|
+
c(`/device/${t}/endCall`, null);
|
|
1306
1306
|
} }
|
|
1307
1307
|
} : void 0;
|
|
1308
1308
|
}
|
|
1309
|
-
function
|
|
1310
|
-
const e = L(t),
|
|
1309
|
+
function _6(t) {
|
|
1310
|
+
const e = L(t), c = h3(t), o = y1(t);
|
|
1311
1311
|
if (!e)
|
|
1312
1312
|
return;
|
|
1313
1313
|
const l = (e.powerState || e.isWarming) && !e.isCooling, i = (!e.powerState || e.isCooling) && !e.isWarming;
|
|
1314
1314
|
return {
|
|
1315
1315
|
displayState: e,
|
|
1316
|
-
powerControl:
|
|
1317
|
-
inputControl:
|
|
1316
|
+
powerControl: c,
|
|
1317
|
+
inputControl: o,
|
|
1318
1318
|
powerFb: { powerOnFb: l, powerOffFb: i }
|
|
1319
1319
|
};
|
|
1320
1320
|
}
|
|
1321
|
-
const
|
|
1321
|
+
const L6 = ({ config: t }) => {
|
|
1322
1322
|
const { sendMessage: e } = y();
|
|
1323
1323
|
G(() => {
|
|
1324
|
-
var
|
|
1324
|
+
var o, l;
|
|
1325
1325
|
if (!t)
|
|
1326
1326
|
return;
|
|
1327
|
-
const
|
|
1327
|
+
const c = [];
|
|
1328
1328
|
Object.values(t.destinations).forEach((i) => {
|
|
1329
|
-
|
|
1329
|
+
c.push(i);
|
|
1330
1330
|
}), Object.values(t.destinationList).forEach((i) => {
|
|
1331
|
-
|
|
1332
|
-
}), (
|
|
1333
|
-
|
|
1331
|
+
c.push(i.sinkKey);
|
|
1332
|
+
}), (o = t.touchpanelKeys) == null || o.forEach((i) => {
|
|
1333
|
+
c.push(i);
|
|
1334
1334
|
}), t.environmentalDevices.forEach((i) => {
|
|
1335
|
-
|
|
1335
|
+
c.push(i.deviceKey);
|
|
1336
1336
|
}), (l = t.accessoryDeviceKeys) == null || l.forEach((i) => {
|
|
1337
|
-
|
|
1338
|
-
}), t.audioCodecKey &&
|
|
1339
|
-
|
|
1337
|
+
c.push(i);
|
|
1338
|
+
}), t.audioCodecKey && c.push(t.audioCodecKey), t.videoCodecKey && c.push(t.videoCodecKey), t.matrixRoutingKey && c.push(t.matrixRoutingKey), t.roomCombinerKey && c.push(t.roomCombinerKey), t.endpointKeys && t.endpointKeys.forEach((i) => {
|
|
1339
|
+
c.push(i);
|
|
1340
1340
|
});
|
|
1341
1341
|
for (const i of Object.values(t.sourceList))
|
|
1342
|
-
i.sourceKey && i.sourceKey !== "$off" &&
|
|
1343
|
-
console.log("deviceKeys",
|
|
1342
|
+
i.sourceKey && i.sourceKey !== "$off" && c.push(i.sourceKey);
|
|
1343
|
+
console.log("deviceKeys", c), c.forEach((i) => {
|
|
1344
1344
|
e(`/device/${i}/fullStatus`, { deviceKey: i });
|
|
1345
1345
|
});
|
|
1346
1346
|
}, [t, e]);
|
|
1347
1347
|
};
|
|
1348
|
-
function
|
|
1349
|
-
const
|
|
1350
|
-
return
|
|
1348
|
+
function $6(t, e) {
|
|
1349
|
+
const c = w2(t, e), o = `/room/${t}/volumes/${e}`;
|
|
1350
|
+
return v3(o, c);
|
|
1351
1351
|
}
|
|
1352
|
-
function
|
|
1353
|
-
const [t, e] = q(), [
|
|
1352
|
+
function A6() {
|
|
1353
|
+
const [t, e] = q(), [c, o] = q();
|
|
1354
1354
|
function l() {
|
|
1355
1355
|
e((/* @__PURE__ */ new Date()).toLocaleDateString("en-US", { dateStyle: "long" }));
|
|
1356
1356
|
const i = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
|
|
1357
|
-
|
|
1357
|
+
o(i);
|
|
1358
1358
|
}
|
|
1359
1359
|
return G(() => {
|
|
1360
1360
|
l();
|
|
@@ -1362,46 +1362,46 @@ function L6() {
|
|
|
1362
1362
|
l();
|
|
1363
1363
|
}, 1e3);
|
|
1364
1364
|
return () => clearInterval(i);
|
|
1365
|
-
}, []), { date: t, time:
|
|
1365
|
+
}, []), { date: t, time: c };
|
|
1366
1366
|
}
|
|
1367
|
-
const
|
|
1368
|
-
const t =
|
|
1367
|
+
const B6 = () => {
|
|
1368
|
+
const t = N3();
|
|
1369
1369
|
return /* @__PURE__ */ n.jsxs("div", { className: "d-flex flex-column align-items-center gap-5", children: [
|
|
1370
1370
|
/* @__PURE__ */ n.jsx("div", { className: "m-2 p-2 bg-danger rounded d-flex align-items-center", children: /* @__PURE__ */ n.jsx("span", { className: "fs-5 text-white", children: "We are sorry. Something went wrong." }) }),
|
|
1371
1371
|
/* @__PURE__ */ n.jsx("button", { className: "btn btn-primary p-2", onClick: () => t(-1), children: "Go Back" })
|
|
1372
1372
|
] });
|
|
1373
|
-
}, $2 = "_iconbtn_16qss_1", A2 = "_iconbtnvert_16qss_7",
|
|
1373
|
+
}, $2 = "_iconbtn_16qss_1", A2 = "_iconbtnvert_16qss_7", B2 = "_iconsm_16qss_18", C1 = {
|
|
1374
1374
|
iconbtn: $2,
|
|
1375
1375
|
iconbtnvert: A2,
|
|
1376
|
-
iconsm:
|
|
1377
|
-
},
|
|
1376
|
+
iconsm: B2
|
|
1377
|
+
}, T2 = ({
|
|
1378
1378
|
multiIcon: t,
|
|
1379
1379
|
otherContent: e = null,
|
|
1380
|
-
vert:
|
|
1381
|
-
className:
|
|
1380
|
+
vert: c = !1,
|
|
1381
|
+
className: o,
|
|
1382
1382
|
iconClassName: l = "",
|
|
1383
1383
|
otherContentClassName: i = "",
|
|
1384
1384
|
disabled: d,
|
|
1385
1385
|
feedback: f,
|
|
1386
1386
|
feedbackClassName: u,
|
|
1387
|
-
onPointerDown:
|
|
1388
|
-
onPointerUp:
|
|
1387
|
+
onPointerDown: S,
|
|
1388
|
+
onPointerUp: C,
|
|
1389
1389
|
onPointerLeave: b,
|
|
1390
1390
|
...A
|
|
1391
1391
|
}) => {
|
|
1392
|
-
const [
|
|
1392
|
+
const [T, V] = q(!1), Y = !d && f ? u : "", J = !d && (T || f);
|
|
1393
1393
|
return /* @__PURE__ */ n.jsxs(
|
|
1394
1394
|
"button",
|
|
1395
1395
|
{
|
|
1396
1396
|
type: "button",
|
|
1397
|
-
className: `${
|
|
1397
|
+
className: `${C1.iconbtn} ${c ? C1.iconbtnvert : ""} ${o} ${Y}`,
|
|
1398
1398
|
...A,
|
|
1399
1399
|
disabled: d,
|
|
1400
1400
|
onPointerDown: (m) => {
|
|
1401
|
-
V(!0),
|
|
1401
|
+
V(!0), S == null || S(m);
|
|
1402
1402
|
},
|
|
1403
1403
|
onPointerUp: (m) => {
|
|
1404
|
-
V(!1),
|
|
1404
|
+
V(!1), C == null || C(m);
|
|
1405
1405
|
},
|
|
1406
1406
|
onPointerLeave: (m) => {
|
|
1407
1407
|
V(!1), b == null || b(m);
|
|
@@ -1410,7 +1410,7 @@ const $6 = () => {
|
|
|
1410
1410
|
t && /* @__PURE__ */ n.jsx(
|
|
1411
1411
|
t,
|
|
1412
1412
|
{
|
|
1413
|
-
className: `${l ||
|
|
1413
|
+
className: `${l || C1.iconsm}`,
|
|
1414
1414
|
active: J,
|
|
1415
1415
|
disabled: d
|
|
1416
1416
|
}
|
|
@@ -1419,67 +1419,18 @@ const $6 = () => {
|
|
|
1419
1419
|
]
|
|
1420
1420
|
}
|
|
1421
1421
|
);
|
|
1422
|
-
},
|
|
1422
|
+
}, x = ({
|
|
1423
1423
|
ActiveImage: t,
|
|
1424
1424
|
DisabledImage: e,
|
|
1425
|
-
EnabledImage:
|
|
1426
|
-
active:
|
|
1425
|
+
EnabledImage: c,
|
|
1426
|
+
active: o,
|
|
1427
1427
|
disabled: l
|
|
1428
|
-
}) => l ? e :
|
|
1428
|
+
}) => l ? e : o ? t : c, D2 = ({
|
|
1429
1429
|
active: t,
|
|
1430
1430
|
className: e = "",
|
|
1431
|
-
disabled:
|
|
1431
|
+
disabled: c
|
|
1432
1432
|
}) => /* @__PURE__ */ n.jsx(
|
|
1433
|
-
|
|
1434
|
-
{
|
|
1435
|
-
ActiveImage: (
|
|
1436
|
-
/* icon-mic-active.svg */
|
|
1437
|
-
/* @__PURE__ */ n.jsx(
|
|
1438
|
-
"svg",
|
|
1439
|
-
{
|
|
1440
|
-
className: e,
|
|
1441
|
-
fill: "currentcolor",
|
|
1442
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1443
|
-
viewBox: "0 0 164.61 164.61",
|
|
1444
|
-
children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM64.9,44.59c0-4.83,1.69-8.94,5.08-12.33,3.38-3.38,7.49-5.08,12.33-5.08s8.94,1.69,12.33,5.08c3.38,3.38,5.08,7.49,5.08,12.33v34.81c0,4.83-1.69,8.94-5.08,12.33s-7.49,5.08-12.33,5.08-8.94-1.69-12.33-5.08-5.08-7.49-5.08-12.33v-34.81ZM113.05,106.09c-6.58,7.64-14.89,12.14-24.95,13.49v17.84h-11.6v-17.84c-10.06-1.35-18.37-5.85-24.95-13.49-6.58-7.64-9.86-16.54-9.86-26.69h11.6c0,8.03,2.83,14.87,8.49,20.52s12.5,8.49,20.52,8.49,14.87-2.83,20.52-8.49,8.49-12.5,8.49-20.52h11.6c0,10.15-3.29,19.05-9.86,26.69Z" }) })
|
|
1445
|
-
}
|
|
1446
|
-
)
|
|
1447
|
-
),
|
|
1448
|
-
DisabledImage: (
|
|
1449
|
-
/* icon-mic-disabled.svg */
|
|
1450
|
-
/* @__PURE__ */ n.jsx(
|
|
1451
|
-
"svg",
|
|
1452
|
-
{
|
|
1453
|
-
className: e,
|
|
1454
|
-
fill: "currentcolor",
|
|
1455
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1456
|
-
viewBox: "0 0 164.61 164.61",
|
|
1457
|
-
children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM82.3,5c19.83,0,37.93,7.51,51.63,19.83L24.82,133.93c-12.32-13.7-19.82-31.8-19.82-51.63C5,39.68,39.68,5,82.3,5ZM82.3,159.61c-19.83,0-37.93-7.51-51.63-19.83L139.78,30.68c12.32,13.7,19.83,31.8,19.83,51.63,0,42.63-34.68,77.3-77.3,77.3ZM94.63,91.73c-2.26,2.26-4.86,3.75-7.78,4.5l12.28-12.28c-.75,2.91-2.24,5.51-4.5,7.78ZM64.98,81.15c-.05-.57-.08-1.15-.08-1.74v-34.81c0-4.83,1.69-8.94,5.08-12.33s7.49-5.08,12.33-5.08,8.94,1.69,12.33,5.08,5.08,7.49,5.08,12.33v1.82l-34.73,34.73ZM111.31,79.4h11.6c0,10.15-3.29,19.05-9.86,26.69-6.58,7.64-14.89,12.14-24.95,13.49v17.84h-11.6v-17.84c-3.65-.49-7.07-1.4-10.27-2.72l9.2-9.2c2.18.5,4.47.76,6.86.76,8.03,0,14.87-2.83,20.52-8.49s8.49-12.5,8.49-20.52ZM46.79,99.33c-3.39-6-5.1-12.64-5.1-19.93h11.6c0,4.06.72,7.81,2.17,11.26l-8.67,8.67Z" }) })
|
|
1458
|
-
}
|
|
1459
|
-
)
|
|
1460
|
-
),
|
|
1461
|
-
EnabledImage: (
|
|
1462
|
-
/* icon-mic-enabled.svg */
|
|
1463
|
-
/* @__PURE__ */ n.jsx(
|
|
1464
|
-
"svg",
|
|
1465
|
-
{
|
|
1466
|
-
className: e,
|
|
1467
|
-
fill: "currentcolor",
|
|
1468
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
1469
|
-
viewBox: "0 0 164.61 164.61",
|
|
1470
|
-
children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx("path", { d: "M82.3,96.81c-4.83,0-8.94-1.69-12.33-5.08-3.38-3.38-5.08-7.49-5.08-12.33v-34.81c0-4.83,1.69-8.94,5.08-12.33s7.49-5.08,12.33-5.08,8.94,1.69,12.33,5.08,5.08,7.49,5.08,12.33v34.81c0,4.83-1.69,8.94-5.08,12.33-3.38,3.38-7.49,5.08-12.33,5.08ZM76.5,137.42v-17.84c-10.06-1.35-18.37-5.85-24.95-13.49-6.58-7.64-9.86-16.54-9.86-26.69h11.6c0,8.03,2.83,14.87,8.49,20.52s12.5,8.49,20.52,8.49,14.87-2.83,20.52-8.49,8.49-12.5,8.49-20.52h11.6c0,10.15-3.29,19.05-9.86,26.69-6.58,7.64-14.89,12.14-24.95,13.49v17.84h-11.6ZM82.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" }) })
|
|
1471
|
-
}
|
|
1472
|
-
)
|
|
1473
|
-
),
|
|
1474
|
-
active: t,
|
|
1475
|
-
disabled: o
|
|
1476
|
-
}
|
|
1477
|
-
), P2 = ({
|
|
1478
|
-
active: t,
|
|
1479
|
-
className: e = "",
|
|
1480
|
-
disabled: o
|
|
1481
|
-
}) => /* @__PURE__ */ n.jsx(
|
|
1482
|
-
M,
|
|
1433
|
+
x,
|
|
1483
1434
|
{
|
|
1484
1435
|
ActiveImage: /* @__PURE__ */ n.jsx(
|
|
1485
1436
|
"svg",
|
|
@@ -1524,14 +1475,14 @@ const $6 = () => {
|
|
|
1524
1475
|
}
|
|
1525
1476
|
),
|
|
1526
1477
|
active: t,
|
|
1527
|
-
disabled:
|
|
1478
|
+
disabled: c
|
|
1528
1479
|
}
|
|
1529
|
-
),
|
|
1480
|
+
), P2 = ({
|
|
1530
1481
|
active: t,
|
|
1531
1482
|
className: e = "",
|
|
1532
|
-
disabled:
|
|
1483
|
+
disabled: c
|
|
1533
1484
|
}) => /* @__PURE__ */ n.jsx(
|
|
1534
|
-
|
|
1485
|
+
x,
|
|
1535
1486
|
{
|
|
1536
1487
|
ActiveImage: (
|
|
1537
1488
|
/* icon-ban-active.svg */
|
|
@@ -1573,14 +1524,14 @@ const $6 = () => {
|
|
|
1573
1524
|
)
|
|
1574
1525
|
),
|
|
1575
1526
|
active: t,
|
|
1576
|
-
disabled:
|
|
1527
|
+
disabled: c
|
|
1577
1528
|
}
|
|
1578
|
-
),
|
|
1529
|
+
), O2 = ({
|
|
1579
1530
|
active: t,
|
|
1580
1531
|
className: e = "",
|
|
1581
|
-
disabled:
|
|
1532
|
+
disabled: c
|
|
1582
1533
|
}) => /* @__PURE__ */ n.jsx(
|
|
1583
|
-
|
|
1534
|
+
x,
|
|
1584
1535
|
{
|
|
1585
1536
|
ActiveImage: /* @__PURE__ */ n.jsx(
|
|
1586
1537
|
"svg",
|
|
@@ -1613,14 +1564,14 @@ const $6 = () => {
|
|
|
1613
1564
|
}
|
|
1614
1565
|
),
|
|
1615
1566
|
active: t,
|
|
1616
|
-
disabled:
|
|
1567
|
+
disabled: c
|
|
1617
1568
|
}
|
|
1618
|
-
),
|
|
1569
|
+
), V2 = ({
|
|
1619
1570
|
active: t,
|
|
1620
1571
|
className: e = "",
|
|
1621
|
-
disabled:
|
|
1572
|
+
disabled: c
|
|
1622
1573
|
}) => /* @__PURE__ */ n.jsx(
|
|
1623
|
-
|
|
1574
|
+
x,
|
|
1624
1575
|
{
|
|
1625
1576
|
ActiveImage: (
|
|
1626
1577
|
/* icon-check-active.svg */
|
|
@@ -1662,14 +1613,86 @@ const $6 = () => {
|
|
|
1662
1613
|
)
|
|
1663
1614
|
),
|
|
1664
1615
|
active: t,
|
|
1665
|
-
disabled:
|
|
1616
|
+
disabled: c
|
|
1617
|
+
}
|
|
1618
|
+
), F2 = ({
|
|
1619
|
+
active: t,
|
|
1620
|
+
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
1621
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1622
|
+
className: e = "",
|
|
1623
|
+
disabled: c
|
|
1624
|
+
}) => /* @__PURE__ */ n.jsx(
|
|
1625
|
+
x,
|
|
1626
|
+
{
|
|
1627
|
+
ActiveImage: (
|
|
1628
|
+
/* icon-controller-active.svg */
|
|
1629
|
+
/* @__PURE__ */ n.jsx(
|
|
1630
|
+
"svg",
|
|
1631
|
+
{
|
|
1632
|
+
className: e,
|
|
1633
|
+
fill: "currentcolor",
|
|
1634
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1635
|
+
viewBox: "0 0 164.61 164.61",
|
|
1636
|
+
children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx(
|
|
1637
|
+
"path",
|
|
1638
|
+
{
|
|
1639
|
+
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",
|
|
1640
|
+
fill: "#000",
|
|
1641
|
+
"stroke-width": "0"
|
|
1642
|
+
}
|
|
1643
|
+
) })
|
|
1644
|
+
}
|
|
1645
|
+
)
|
|
1646
|
+
),
|
|
1647
|
+
DisabledImage: (
|
|
1648
|
+
/* icon-controller-disabled.svg */
|
|
1649
|
+
/* @__PURE__ */ n.jsx(
|
|
1650
|
+
"svg",
|
|
1651
|
+
{
|
|
1652
|
+
className: e,
|
|
1653
|
+
fill: "currentcolor",
|
|
1654
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1655
|
+
viewBox: "0 0 164.61 164.61",
|
|
1656
|
+
children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx(
|
|
1657
|
+
"path",
|
|
1658
|
+
{
|
|
1659
|
+
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",
|
|
1660
|
+
fill: "#090a0e",
|
|
1661
|
+
"stroke-width": "0"
|
|
1662
|
+
}
|
|
1663
|
+
) })
|
|
1664
|
+
}
|
|
1665
|
+
)
|
|
1666
|
+
),
|
|
1667
|
+
EnabledImage: (
|
|
1668
|
+
/* icon-controller-enabled.svg */
|
|
1669
|
+
/* @__PURE__ */ n.jsx(
|
|
1670
|
+
"svg",
|
|
1671
|
+
{
|
|
1672
|
+
className: e,
|
|
1673
|
+
fill: "currentcolor",
|
|
1674
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1675
|
+
viewBox: "0 0 164.61 164.61",
|
|
1676
|
+
children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx(
|
|
1677
|
+
"path",
|
|
1678
|
+
{
|
|
1679
|
+
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",
|
|
1680
|
+
fill: "#090a0e",
|
|
1681
|
+
"stroke-width": "0"
|
|
1682
|
+
}
|
|
1683
|
+
) })
|
|
1684
|
+
}
|
|
1685
|
+
)
|
|
1686
|
+
),
|
|
1687
|
+
active: t,
|
|
1688
|
+
disabled: c
|
|
1666
1689
|
}
|
|
1667
1690
|
), k2 = ({
|
|
1668
1691
|
active: t,
|
|
1669
1692
|
className: e = "",
|
|
1670
|
-
disabled:
|
|
1693
|
+
disabled: c
|
|
1671
1694
|
}) => /* @__PURE__ */ n.jsx(
|
|
1672
|
-
|
|
1695
|
+
x,
|
|
1673
1696
|
{
|
|
1674
1697
|
ActiveImage: (
|
|
1675
1698
|
/* icon-down-active.svg */
|
|
@@ -1711,14 +1734,14 @@ const $6 = () => {
|
|
|
1711
1734
|
)
|
|
1712
1735
|
),
|
|
1713
1736
|
active: t,
|
|
1714
|
-
disabled:
|
|
1737
|
+
disabled: c
|
|
1715
1738
|
}
|
|
1716
1739
|
), U2 = ({
|
|
1717
1740
|
active: t,
|
|
1718
1741
|
className: e = "",
|
|
1719
|
-
disabled:
|
|
1742
|
+
disabled: c
|
|
1720
1743
|
}) => /* @__PURE__ */ n.jsx(
|
|
1721
|
-
|
|
1744
|
+
x,
|
|
1722
1745
|
{
|
|
1723
1746
|
ActiveImage: (
|
|
1724
1747
|
/* icon-elipses-active.svg */
|
|
@@ -1760,14 +1783,14 @@ const $6 = () => {
|
|
|
1760
1783
|
)
|
|
1761
1784
|
),
|
|
1762
1785
|
active: t,
|
|
1763
|
-
disabled:
|
|
1786
|
+
disabled: c
|
|
1764
1787
|
}
|
|
1765
1788
|
), W2 = ({
|
|
1766
1789
|
active: t,
|
|
1767
1790
|
className: e = "",
|
|
1768
|
-
disabled:
|
|
1791
|
+
disabled: c
|
|
1769
1792
|
}) => /* @__PURE__ */ n.jsx(
|
|
1770
|
-
|
|
1793
|
+
x,
|
|
1771
1794
|
{
|
|
1772
1795
|
ActiveImage: (
|
|
1773
1796
|
/* icon-flag-active.svg */
|
|
@@ -1809,14 +1832,14 @@ const $6 = () => {
|
|
|
1809
1832
|
)
|
|
1810
1833
|
),
|
|
1811
1834
|
active: t,
|
|
1812
|
-
disabled:
|
|
1835
|
+
disabled: c
|
|
1813
1836
|
}
|
|
1814
1837
|
), H2 = ({
|
|
1815
1838
|
active: t,
|
|
1816
1839
|
className: e = "",
|
|
1817
|
-
disabled:
|
|
1840
|
+
disabled: c
|
|
1818
1841
|
}) => /* @__PURE__ */ n.jsx(
|
|
1819
|
-
|
|
1842
|
+
x,
|
|
1820
1843
|
{
|
|
1821
1844
|
ActiveImage: (
|
|
1822
1845
|
/* /Users/hvolmer/Downloads/SVG/icon-gear-active.svg */
|
|
@@ -1858,14 +1881,14 @@ const $6 = () => {
|
|
|
1858
1881
|
)
|
|
1859
1882
|
),
|
|
1860
1883
|
active: t,
|
|
1861
|
-
disabled:
|
|
1884
|
+
disabled: c
|
|
1862
1885
|
}
|
|
1863
1886
|
), K2 = ({
|
|
1864
1887
|
active: t,
|
|
1865
1888
|
className: e = "",
|
|
1866
|
-
disabled:
|
|
1889
|
+
disabled: c
|
|
1867
1890
|
}) => /* @__PURE__ */ n.jsx(
|
|
1868
|
-
|
|
1891
|
+
x,
|
|
1869
1892
|
{
|
|
1870
1893
|
ActiveImage: (
|
|
1871
1894
|
/* icon-glass-active.svg */
|
|
@@ -1907,16 +1930,16 @@ const $6 = () => {
|
|
|
1907
1930
|
)
|
|
1908
1931
|
),
|
|
1909
1932
|
active: t,
|
|
1910
|
-
disabled:
|
|
1933
|
+
disabled: c
|
|
1911
1934
|
}
|
|
1912
1935
|
), G2 = ({
|
|
1913
1936
|
active: t,
|
|
1914
1937
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
1915
1938
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1916
1939
|
className: e = "",
|
|
1917
|
-
disabled:
|
|
1940
|
+
disabled: c
|
|
1918
1941
|
}) => /* @__PURE__ */ n.jsx(
|
|
1919
|
-
|
|
1942
|
+
x,
|
|
1920
1943
|
{
|
|
1921
1944
|
ActiveImage: (
|
|
1922
1945
|
/* icon-hdmi-active.svg */
|
|
@@ -1976,14 +1999,14 @@ const $6 = () => {
|
|
|
1976
1999
|
)
|
|
1977
2000
|
),
|
|
1978
2001
|
active: t,
|
|
1979
|
-
disabled:
|
|
2002
|
+
disabled: c
|
|
1980
2003
|
}
|
|
1981
2004
|
), q2 = ({
|
|
1982
2005
|
active: t,
|
|
1983
2006
|
className: e = "",
|
|
1984
|
-
disabled:
|
|
2007
|
+
disabled: c
|
|
1985
2008
|
}) => /* @__PURE__ */ n.jsx(
|
|
1986
|
-
|
|
2009
|
+
x,
|
|
1987
2010
|
{
|
|
1988
2011
|
ActiveImage: (
|
|
1989
2012
|
/* icon-laptop-active.svg */
|
|
@@ -2025,14 +2048,14 @@ const $6 = () => {
|
|
|
2025
2048
|
)
|
|
2026
2049
|
),
|
|
2027
2050
|
active: t,
|
|
2028
|
-
disabled:
|
|
2051
|
+
disabled: c
|
|
2029
2052
|
}
|
|
2030
2053
|
), Y2 = ({
|
|
2031
2054
|
active: t,
|
|
2032
2055
|
className: e = "",
|
|
2033
|
-
disabled:
|
|
2056
|
+
disabled: c
|
|
2034
2057
|
}) => /* @__PURE__ */ n.jsx(
|
|
2035
|
-
|
|
2058
|
+
x,
|
|
2036
2059
|
{
|
|
2037
2060
|
ActiveImage: (
|
|
2038
2061
|
/* icon-left-active.svg */
|
|
@@ -2074,14 +2097,14 @@ const $6 = () => {
|
|
|
2074
2097
|
)
|
|
2075
2098
|
),
|
|
2076
2099
|
active: t,
|
|
2077
|
-
disabled:
|
|
2100
|
+
disabled: c
|
|
2078
2101
|
}
|
|
2079
2102
|
), J2 = ({
|
|
2080
2103
|
active: t,
|
|
2081
2104
|
className: e = "",
|
|
2082
|
-
disabled:
|
|
2105
|
+
disabled: c
|
|
2083
2106
|
}) => /* @__PURE__ */ n.jsx(
|
|
2084
|
-
|
|
2107
|
+
x,
|
|
2085
2108
|
{
|
|
2086
2109
|
ActiveImage: (
|
|
2087
2110
|
/* icon-light-active.svg */
|
|
@@ -2123,14 +2146,14 @@ const $6 = () => {
|
|
|
2123
2146
|
)
|
|
2124
2147
|
),
|
|
2125
2148
|
active: t,
|
|
2126
|
-
disabled:
|
|
2149
|
+
disabled: c
|
|
2127
2150
|
}
|
|
2128
2151
|
), z2 = ({
|
|
2129
2152
|
active: t,
|
|
2130
2153
|
className: e = "",
|
|
2131
|
-
disabled:
|
|
2154
|
+
disabled: c
|
|
2132
2155
|
}) => /* @__PURE__ */ n.jsx(
|
|
2133
|
-
|
|
2156
|
+
x,
|
|
2134
2157
|
{
|
|
2135
2158
|
ActiveImage: (
|
|
2136
2159
|
/* icon-moon-active.svg */
|
|
@@ -2172,14 +2195,14 @@ const $6 = () => {
|
|
|
2172
2195
|
)
|
|
2173
2196
|
),
|
|
2174
2197
|
active: t,
|
|
2175
|
-
disabled:
|
|
2198
|
+
disabled: c
|
|
2176
2199
|
}
|
|
2177
2200
|
), X2 = ({
|
|
2178
2201
|
active: t,
|
|
2179
2202
|
className: e = "",
|
|
2180
|
-
disabled:
|
|
2203
|
+
disabled: c
|
|
2181
2204
|
}) => /* @__PURE__ */ n.jsx(
|
|
2182
|
-
|
|
2205
|
+
x,
|
|
2183
2206
|
{
|
|
2184
2207
|
ActiveImage: (
|
|
2185
2208
|
/* icon-playstation-active.svg */
|
|
@@ -2194,14 +2217,14 @@ const $6 = () => {
|
|
|
2194
2217
|
/* @__PURE__ */ n.jsx("svg", { className: e, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx("path", { d: "M131.62,102.87c-1.96,2.47-6.77,4.24-6.77,4.24l-35.75,12.84v-9.47l26.31-9.37c2.99-1.07,3.44-2.58,1.02-3.38-2.42-.8-6.81-.57-9.8.51l-17.53,6.17v-9.83l1.01-.34s5.07-1.79,12.19-2.58c7.12-.78,15.85.11,22.69,2.7,7.72,2.44,8.59,6.03,6.63,8.51ZM92.51,86.75v-24.22c0-2.84-.52-5.46-3.19-6.2-2.04-.65-3.31,1.24-3.31,4.09v60.65l-16.36-5.19V43.55c6.95,1.29,17.09,4.34,22.53,6.18,13.85,4.76,18.55,10.67,18.55,24.01s-8.02,17.93-18.22,13ZM39.63,109.49c-7.92-2.23-9.24-6.88-5.63-9.56,3.34-2.47,9.01-4.33,9.01-4.33l23.45-8.34v9.51l-16.88,6.04c-2.98,1.07-3.44,2.58-1.02,3.38,2.42.79,6.81.57,9.8-.5l8.1-2.94v8.51c-.51.09-1.09.18-1.61.27-8.1,1.32-16.72.77-25.22-2.03h0ZM82.3,164.61C36.92,164.61,0,127.69,0,82.3S36.92,0,82.3,0s82.3,36.92,82.3,82.3-36.92,82.3-82.3,82.3ZM82.3,5C39.68,5,5,39.68,5,82.3s34.68,77.3,77.3,77.3,77.3-34.68,77.3-77.3S124.93,5,82.3,5Z" }) }) })
|
|
2195
2218
|
),
|
|
2196
2219
|
active: t,
|
|
2197
|
-
disabled:
|
|
2220
|
+
disabled: c
|
|
2198
2221
|
}
|
|
2199
2222
|
), Q2 = ({
|
|
2200
2223
|
active: t,
|
|
2201
2224
|
className: e = "",
|
|
2202
|
-
disabled:
|
|
2225
|
+
disabled: c
|
|
2203
2226
|
}) => /* @__PURE__ */ n.jsx(
|
|
2204
|
-
|
|
2227
|
+
x,
|
|
2205
2228
|
{
|
|
2206
2229
|
ActiveImage: (
|
|
2207
2230
|
/* icon-podium-active.svg */
|
|
@@ -2243,14 +2266,14 @@ const $6 = () => {
|
|
|
2243
2266
|
)
|
|
2244
2267
|
),
|
|
2245
2268
|
active: t,
|
|
2246
|
-
disabled:
|
|
2269
|
+
disabled: c
|
|
2247
2270
|
}
|
|
2248
2271
|
), N2 = ({
|
|
2249
2272
|
active: t,
|
|
2250
2273
|
className: e = "",
|
|
2251
|
-
disabled:
|
|
2274
|
+
disabled: c
|
|
2252
2275
|
}) => /* @__PURE__ */ n.jsx(
|
|
2253
|
-
|
|
2276
|
+
x,
|
|
2254
2277
|
{
|
|
2255
2278
|
ActiveImage: (
|
|
2256
2279
|
/* icon-power-active.svg */
|
|
@@ -2292,14 +2315,14 @@ const $6 = () => {
|
|
|
2292
2315
|
)
|
|
2293
2316
|
),
|
|
2294
2317
|
active: t,
|
|
2295
|
-
disabled:
|
|
2318
|
+
disabled: c
|
|
2296
2319
|
}
|
|
2297
2320
|
), e8 = ({
|
|
2298
2321
|
active: t,
|
|
2299
2322
|
className: e = "",
|
|
2300
|
-
disabled:
|
|
2323
|
+
disabled: c
|
|
2301
2324
|
}) => /* @__PURE__ */ n.jsx(
|
|
2302
|
-
|
|
2325
|
+
x,
|
|
2303
2326
|
{
|
|
2304
2327
|
ActiveImage: (
|
|
2305
2328
|
/* icon-privacy-active.svg */
|
|
@@ -2341,14 +2364,14 @@ const $6 = () => {
|
|
|
2341
2364
|
)
|
|
2342
2365
|
),
|
|
2343
2366
|
active: t,
|
|
2344
|
-
disabled:
|
|
2367
|
+
disabled: c
|
|
2345
2368
|
}
|
|
2346
2369
|
), t8 = ({
|
|
2347
2370
|
active: t,
|
|
2348
2371
|
className: e = "",
|
|
2349
|
-
disabled:
|
|
2372
|
+
disabled: c
|
|
2350
2373
|
}) => /* @__PURE__ */ n.jsx(
|
|
2351
|
-
|
|
2374
|
+
x,
|
|
2352
2375
|
{
|
|
2353
2376
|
ActiveImage: (
|
|
2354
2377
|
/* icon-question-active.svg */
|
|
@@ -2390,14 +2413,14 @@ const $6 = () => {
|
|
|
2390
2413
|
)
|
|
2391
2414
|
),
|
|
2392
2415
|
active: t,
|
|
2393
|
-
disabled:
|
|
2416
|
+
disabled: c
|
|
2394
2417
|
}
|
|
2395
2418
|
), n8 = ({
|
|
2396
2419
|
active: t,
|
|
2397
2420
|
className: e = "",
|
|
2398
|
-
disabled:
|
|
2421
|
+
disabled: c
|
|
2399
2422
|
}) => /* @__PURE__ */ n.jsx(
|
|
2400
|
-
|
|
2423
|
+
x,
|
|
2401
2424
|
{
|
|
2402
2425
|
ActiveImage: (
|
|
2403
2426
|
/* icon-right-active.svg */
|
|
@@ -2439,14 +2462,86 @@ const $6 = () => {
|
|
|
2439
2462
|
)
|
|
2440
2463
|
),
|
|
2441
2464
|
active: t,
|
|
2442
|
-
disabled:
|
|
2465
|
+
disabled: c
|
|
2443
2466
|
}
|
|
2444
|
-
),
|
|
2467
|
+
), c8 = ({
|
|
2468
|
+
active: t,
|
|
2469
|
+
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
2470
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
2471
|
+
className: e = "",
|
|
2472
|
+
disabled: c
|
|
2473
|
+
}) => /* @__PURE__ */ n.jsx(
|
|
2474
|
+
x,
|
|
2475
|
+
{
|
|
2476
|
+
ActiveImage: (
|
|
2477
|
+
/* icon-roomPC-active.svg */
|
|
2478
|
+
/* @__PURE__ */ n.jsx(
|
|
2479
|
+
"svg",
|
|
2480
|
+
{
|
|
2481
|
+
className: e,
|
|
2482
|
+
fill: "currentcolor",
|
|
2483
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2484
|
+
viewBox: "0 0 164.61 164.61",
|
|
2485
|
+
children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx(
|
|
2486
|
+
"path",
|
|
2487
|
+
{
|
|
2488
|
+
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",
|
|
2489
|
+
fill: "#000",
|
|
2490
|
+
"stroke-width": "0"
|
|
2491
|
+
}
|
|
2492
|
+
) })
|
|
2493
|
+
}
|
|
2494
|
+
)
|
|
2495
|
+
),
|
|
2496
|
+
DisabledImage: (
|
|
2497
|
+
/* icon-roomPC-disabled.svg */
|
|
2498
|
+
/* @__PURE__ */ n.jsx(
|
|
2499
|
+
"svg",
|
|
2500
|
+
{
|
|
2501
|
+
className: e,
|
|
2502
|
+
fill: "currentcolor",
|
|
2503
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2504
|
+
viewBox: "0 0 164.61 164.61",
|
|
2505
|
+
children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx(
|
|
2506
|
+
"path",
|
|
2507
|
+
{
|
|
2508
|
+
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",
|
|
2509
|
+
fill: "#000",
|
|
2510
|
+
"stroke-width": "0"
|
|
2511
|
+
}
|
|
2512
|
+
) })
|
|
2513
|
+
}
|
|
2514
|
+
)
|
|
2515
|
+
),
|
|
2516
|
+
EnabledImage: (
|
|
2517
|
+
/* icon-roomPC-enabled.svg */
|
|
2518
|
+
/* @__PURE__ */ n.jsx(
|
|
2519
|
+
"svg",
|
|
2520
|
+
{
|
|
2521
|
+
className: e,
|
|
2522
|
+
fill: "currentcolor",
|
|
2523
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2524
|
+
viewBox: "0 0 164.61 164.61",
|
|
2525
|
+
children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx(
|
|
2526
|
+
"path",
|
|
2527
|
+
{
|
|
2528
|
+
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",
|
|
2529
|
+
fill: "#000",
|
|
2530
|
+
"stroke-width": "0"
|
|
2531
|
+
}
|
|
2532
|
+
) }) })
|
|
2533
|
+
}
|
|
2534
|
+
)
|
|
2535
|
+
),
|
|
2536
|
+
active: t,
|
|
2537
|
+
disabled: c
|
|
2538
|
+
}
|
|
2539
|
+
), s8 = ({
|
|
2445
2540
|
active: t,
|
|
2446
2541
|
className: e = "",
|
|
2447
|
-
disabled:
|
|
2542
|
+
disabled: c
|
|
2448
2543
|
}) => /* @__PURE__ */ n.jsx(
|
|
2449
|
-
|
|
2544
|
+
x,
|
|
2450
2545
|
{
|
|
2451
2546
|
ActiveImage: (
|
|
2452
2547
|
/* icon-shade-active.svg */
|
|
@@ -2488,14 +2583,14 @@ const $6 = () => {
|
|
|
2488
2583
|
)
|
|
2489
2584
|
),
|
|
2490
2585
|
active: t,
|
|
2491
|
-
disabled:
|
|
2586
|
+
disabled: c
|
|
2492
2587
|
}
|
|
2493
|
-
),
|
|
2588
|
+
), o8 = ({
|
|
2494
2589
|
active: t,
|
|
2495
2590
|
className: e = "",
|
|
2496
|
-
disabled:
|
|
2591
|
+
disabled: c
|
|
2497
2592
|
}) => /* @__PURE__ */ n.jsx(
|
|
2498
|
-
|
|
2593
|
+
x,
|
|
2499
2594
|
{
|
|
2500
2595
|
ActiveImage: (
|
|
2501
2596
|
/* icon-sun-active.svg */
|
|
@@ -2537,14 +2632,14 @@ const $6 = () => {
|
|
|
2537
2632
|
)
|
|
2538
2633
|
),
|
|
2539
2634
|
active: t,
|
|
2540
|
-
disabled:
|
|
2635
|
+
disabled: c
|
|
2541
2636
|
}
|
|
2542
|
-
),
|
|
2637
|
+
), r8 = ({
|
|
2543
2638
|
active: t,
|
|
2544
2639
|
className: e = "",
|
|
2545
|
-
disabled:
|
|
2640
|
+
disabled: c
|
|
2546
2641
|
}) => /* @__PURE__ */ n.jsx(
|
|
2547
|
-
|
|
2642
|
+
x,
|
|
2548
2643
|
{
|
|
2549
2644
|
ActiveImage: (
|
|
2550
2645
|
/* icon-up-active.svg */
|
|
@@ -2586,14 +2681,14 @@ const $6 = () => {
|
|
|
2586
2681
|
)
|
|
2587
2682
|
),
|
|
2588
2683
|
active: t,
|
|
2589
|
-
disabled:
|
|
2684
|
+
disabled: c
|
|
2590
2685
|
}
|
|
2591
|
-
),
|
|
2686
|
+
), l8 = ({
|
|
2592
2687
|
active: t,
|
|
2593
2688
|
className: e = "",
|
|
2594
|
-
disabled:
|
|
2689
|
+
disabled: c
|
|
2595
2690
|
}) => /* @__PURE__ */ n.jsx(
|
|
2596
|
-
|
|
2691
|
+
x,
|
|
2597
2692
|
{
|
|
2598
2693
|
ActiveImage: (
|
|
2599
2694
|
/* icon-volDown-active.svg */
|
|
@@ -2635,14 +2730,14 @@ const $6 = () => {
|
|
|
2635
2730
|
)
|
|
2636
2731
|
),
|
|
2637
2732
|
active: t,
|
|
2638
|
-
disabled:
|
|
2733
|
+
disabled: c
|
|
2639
2734
|
}
|
|
2640
|
-
),
|
|
2735
|
+
), i8 = ({
|
|
2641
2736
|
active: t,
|
|
2642
2737
|
className: e = "",
|
|
2643
|
-
disabled:
|
|
2738
|
+
disabled: c
|
|
2644
2739
|
}) => /* @__PURE__ */ n.jsx(
|
|
2645
|
-
|
|
2740
|
+
x,
|
|
2646
2741
|
{
|
|
2647
2742
|
ActiveImage: (
|
|
2648
2743
|
/* icon-volMute-active.svg */
|
|
@@ -2684,14 +2779,14 @@ const $6 = () => {
|
|
|
2684
2779
|
)
|
|
2685
2780
|
),
|
|
2686
2781
|
active: t,
|
|
2687
|
-
disabled:
|
|
2782
|
+
disabled: c
|
|
2688
2783
|
}
|
|
2689
|
-
),
|
|
2784
|
+
), a8 = ({
|
|
2690
2785
|
active: t,
|
|
2691
2786
|
className: e = "",
|
|
2692
|
-
disabled:
|
|
2787
|
+
disabled: c
|
|
2693
2788
|
}) => /* @__PURE__ */ n.jsx(
|
|
2694
|
-
|
|
2789
|
+
x,
|
|
2695
2790
|
{
|
|
2696
2791
|
ActiveImage: (
|
|
2697
2792
|
/* icon-volUp-active.svg */
|
|
@@ -2733,14 +2828,14 @@ const $6 = () => {
|
|
|
2733
2828
|
)
|
|
2734
2829
|
),
|
|
2735
2830
|
active: t,
|
|
2736
|
-
disabled:
|
|
2831
|
+
disabled: c
|
|
2737
2832
|
}
|
|
2738
|
-
),
|
|
2833
|
+
), u8 = ({
|
|
2739
2834
|
active: t,
|
|
2740
2835
|
className: e = "",
|
|
2741
|
-
disabled:
|
|
2836
|
+
disabled: c
|
|
2742
2837
|
}) => /* @__PURE__ */ n.jsx(
|
|
2743
|
-
|
|
2838
|
+
x,
|
|
2744
2839
|
{
|
|
2745
2840
|
ActiveImage: (
|
|
2746
2841
|
/* icon-wireless-active.svg */
|
|
@@ -2782,14 +2877,14 @@ const $6 = () => {
|
|
|
2782
2877
|
)
|
|
2783
2878
|
),
|
|
2784
2879
|
active: t,
|
|
2785
|
-
disabled:
|
|
2880
|
+
disabled: c
|
|
2786
2881
|
}
|
|
2787
|
-
),
|
|
2882
|
+
), d8 = ({
|
|
2788
2883
|
active: t,
|
|
2789
2884
|
className: e = "",
|
|
2790
|
-
disabled:
|
|
2885
|
+
disabled: c
|
|
2791
2886
|
}) => /* @__PURE__ */ n.jsx(
|
|
2792
|
-
|
|
2887
|
+
x,
|
|
2793
2888
|
{
|
|
2794
2889
|
ActiveImage: (
|
|
2795
2890
|
/* icon-x-active.svg */
|
|
@@ -2831,14 +2926,14 @@ const $6 = () => {
|
|
|
2831
2926
|
)
|
|
2832
2927
|
),
|
|
2833
2928
|
active: t,
|
|
2834
|
-
disabled:
|
|
2929
|
+
disabled: c
|
|
2835
2930
|
}
|
|
2836
|
-
),
|
|
2931
|
+
), v8 = ({
|
|
2837
2932
|
active: t,
|
|
2838
2933
|
className: e = "",
|
|
2839
|
-
disabled:
|
|
2934
|
+
disabled: c
|
|
2840
2935
|
}) => /* @__PURE__ */ n.jsx(
|
|
2841
|
-
|
|
2936
|
+
x,
|
|
2842
2937
|
{
|
|
2843
2938
|
ActiveImage: (
|
|
2844
2939
|
/* icon-xbox-active.svg */
|
|
@@ -2880,14 +2975,64 @@ const $6 = () => {
|
|
|
2880
2975
|
)
|
|
2881
2976
|
),
|
|
2882
2977
|
active: t,
|
|
2883
|
-
disabled:
|
|
2978
|
+
disabled: c
|
|
2979
|
+
}
|
|
2980
|
+
), h8 = ({
|
|
2981
|
+
active: t,
|
|
2982
|
+
className: e = "",
|
|
2983
|
+
disabled: c
|
|
2984
|
+
}) => /* @__PURE__ */ n.jsx(
|
|
2985
|
+
x,
|
|
2986
|
+
{
|
|
2987
|
+
ActiveImage: (
|
|
2988
|
+
/* icon-mic-active.svg */
|
|
2989
|
+
/* @__PURE__ */ n.jsx(
|
|
2990
|
+
"svg",
|
|
2991
|
+
{
|
|
2992
|
+
className: e,
|
|
2993
|
+
fill: "currentcolor",
|
|
2994
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2995
|
+
viewBox: "0 0 164.61 164.61",
|
|
2996
|
+
children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM64.9,44.59c0-4.83,1.69-8.94,5.08-12.33,3.38-3.38,7.49-5.08,12.33-5.08s8.94,1.69,12.33,5.08c3.38,3.38,5.08,7.49,5.08,12.33v34.81c0,4.83-1.69,8.94-5.08,12.33s-7.49,5.08-12.33,5.08-8.94-1.69-12.33-5.08-5.08-7.49-5.08-12.33v-34.81ZM113.05,106.09c-6.58,7.64-14.89,12.14-24.95,13.49v17.84h-11.6v-17.84c-10.06-1.35-18.37-5.85-24.95-13.49-6.58-7.64-9.86-16.54-9.86-26.69h11.6c0,8.03,2.83,14.87,8.49,20.52s12.5,8.49,20.52,8.49,14.87-2.83,20.52-8.49,8.49-12.5,8.49-20.52h11.6c0,10.15-3.29,19.05-9.86,26.69Z" }) })
|
|
2997
|
+
}
|
|
2998
|
+
)
|
|
2999
|
+
),
|
|
3000
|
+
DisabledImage: (
|
|
3001
|
+
/* icon-mic-disabled.svg */
|
|
3002
|
+
/* @__PURE__ */ n.jsx(
|
|
3003
|
+
"svg",
|
|
3004
|
+
{
|
|
3005
|
+
className: e,
|
|
3006
|
+
fill: "currentcolor",
|
|
3007
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3008
|
+
viewBox: "0 0 164.61 164.61",
|
|
3009
|
+
children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM82.3,5c19.83,0,37.93,7.51,51.63,19.83L24.82,133.93c-12.32-13.7-19.82-31.8-19.82-51.63C5,39.68,39.68,5,82.3,5ZM82.3,159.61c-19.83,0-37.93-7.51-51.63-19.83L139.78,30.68c12.32,13.7,19.83,31.8,19.83,51.63,0,42.63-34.68,77.3-77.3,77.3ZM94.63,91.73c-2.26,2.26-4.86,3.75-7.78,4.5l12.28-12.28c-.75,2.91-2.24,5.51-4.5,7.78ZM64.98,81.15c-.05-.57-.08-1.15-.08-1.74v-34.81c0-4.83,1.69-8.94,5.08-12.33s7.49-5.08,12.33-5.08,8.94,1.69,12.33,5.08,5.08,7.49,5.08,12.33v1.82l-34.73,34.73ZM111.31,79.4h11.6c0,10.15-3.29,19.05-9.86,26.69-6.58,7.64-14.89,12.14-24.95,13.49v17.84h-11.6v-17.84c-3.65-.49-7.07-1.4-10.27-2.72l9.2-9.2c2.18.5,4.47.76,6.86.76,8.03,0,14.87-2.83,20.52-8.49s8.49-12.5,8.49-20.52ZM46.79,99.33c-3.39-6-5.1-12.64-5.1-19.93h11.6c0,4.06.72,7.81,2.17,11.26l-8.67,8.67Z" }) })
|
|
3010
|
+
}
|
|
3011
|
+
)
|
|
3012
|
+
),
|
|
3013
|
+
EnabledImage: (
|
|
3014
|
+
/* icon-mic-enabled.svg */
|
|
3015
|
+
/* @__PURE__ */ n.jsx(
|
|
3016
|
+
"svg",
|
|
3017
|
+
{
|
|
3018
|
+
className: e,
|
|
3019
|
+
fill: "currentcolor",
|
|
3020
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3021
|
+
viewBox: "0 0 164.61 164.61",
|
|
3022
|
+
children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx("path", { d: "M82.3,96.81c-4.83,0-8.94-1.69-12.33-5.08-3.38-3.38-5.08-7.49-5.08-12.33v-34.81c0-4.83,1.69-8.94,5.08-12.33s7.49-5.08,12.33-5.08,8.94,1.69,12.33,5.08,5.08,7.49,5.08,12.33v34.81c0,4.83-1.69,8.94-5.08,12.33-3.38,3.38-7.49,5.08-12.33,5.08ZM76.5,137.42v-17.84c-10.06-1.35-18.37-5.85-24.95-13.49-6.58-7.64-9.86-16.54-9.86-26.69h11.6c0,8.03,2.83,14.87,8.49,20.52s12.5,8.49,20.52,8.49,14.87-2.83,20.52-8.49,8.49-12.5,8.49-20.52h11.6c0,10.15-3.29,19.05-9.86,26.69-6.58,7.64-14.89,12.14-24.95,13.49v17.84h-11.6ZM82.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" }) })
|
|
3023
|
+
}
|
|
3024
|
+
)
|
|
3025
|
+
),
|
|
3026
|
+
active: t,
|
|
3027
|
+
disabled: c
|
|
2884
3028
|
}
|
|
2885
|
-
),
|
|
2886
|
-
Alert:
|
|
2887
|
-
Camera:
|
|
3029
|
+
), g8 = {
|
|
3030
|
+
Alert: D2,
|
|
3031
|
+
Camera: O2,
|
|
2888
3032
|
DownArrow: k2,
|
|
2889
|
-
Ban:
|
|
2890
|
-
Check:
|
|
3033
|
+
Ban: P2,
|
|
3034
|
+
Check: V2,
|
|
3035
|
+
Controller: F2,
|
|
2891
3036
|
Elipses: U2,
|
|
2892
3037
|
Flag: W2,
|
|
2893
3038
|
Gear: H2,
|
|
@@ -2896,7 +3041,7 @@ const $6 = () => {
|
|
|
2896
3041
|
Laptop: q2,
|
|
2897
3042
|
LeftArrow: Y2,
|
|
2898
3043
|
Light: J2,
|
|
2899
|
-
Mic:
|
|
3044
|
+
Mic: h8,
|
|
2900
3045
|
Moon: z2,
|
|
2901
3046
|
Playstation: X2,
|
|
2902
3047
|
Podium: Q2,
|
|
@@ -2904,84 +3049,85 @@ const $6 = () => {
|
|
|
2904
3049
|
Privacy: e8,
|
|
2905
3050
|
Question: t8,
|
|
2906
3051
|
RightArrow: n8,
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
3052
|
+
RoomPC: c8,
|
|
3053
|
+
Shade: s8,
|
|
3054
|
+
Sun: o8,
|
|
3055
|
+
UpArrow: r8,
|
|
3056
|
+
VolDown: l8,
|
|
3057
|
+
VolMute: i8,
|
|
3058
|
+
VolUp: a8,
|
|
3059
|
+
Wireless: u8,
|
|
3060
|
+
X: d8,
|
|
3061
|
+
Xbox: v8
|
|
2916
3062
|
};
|
|
2917
|
-
function
|
|
3063
|
+
function T6({
|
|
2918
3064
|
name: t,
|
|
2919
|
-
iconsDictionary: e =
|
|
2920
|
-
...
|
|
3065
|
+
iconsDictionary: e = g8,
|
|
3066
|
+
...c
|
|
2921
3067
|
}) {
|
|
2922
|
-
const
|
|
2923
|
-
return
|
|
3068
|
+
const o = e[t] ?? null;
|
|
3069
|
+
return o || console.error(`Icon ${t} not found in dictionary`), /* @__PURE__ */ n.jsx(T2, { multiIcon: o, ...c });
|
|
2924
3070
|
}
|
|
2925
|
-
const
|
|
2926
|
-
grid:
|
|
2927
|
-
header:
|
|
2928
|
-
content:
|
|
2929
|
-
footer:
|
|
2930
|
-
volume:
|
|
2931
|
-
},
|
|
2932
|
-
/* @__PURE__ */ n.jsx("div", { className:
|
|
2933
|
-
/* @__PURE__ */ n.jsx("div", { className:
|
|
2934
|
-
l && /* @__PURE__ */ n.jsx("div", { className:
|
|
2935
|
-
/* @__PURE__ */ n.jsx("div", { className:
|
|
2936
|
-
] }),
|
|
2937
|
-
grid:
|
|
2938
|
-
header:
|
|
2939
|
-
content:
|
|
3071
|
+
const f8 = "_grid_1cmpp_1", w8 = "_header_1cmpp_11", p8 = "_content_1cmpp_17", x8 = "_footer_1cmpp_23", M8 = "_volume_1cmpp_29", c1 = {
|
|
3072
|
+
grid: f8,
|
|
3073
|
+
header: w8,
|
|
3074
|
+
content: p8,
|
|
3075
|
+
footer: x8,
|
|
3076
|
+
volume: M8
|
|
3077
|
+
}, D6 = ({ header: t, footer: e, content: c, volume: o, showVolume: l }) => /* @__PURE__ */ n.jsxs("div", { className: c1.grid, children: [
|
|
3078
|
+
/* @__PURE__ */ n.jsx("div", { className: c1.header, children: t }),
|
|
3079
|
+
/* @__PURE__ */ n.jsx("div", { className: c1.content, children: c }),
|
|
3080
|
+
l && /* @__PURE__ */ n.jsx("div", { className: c1.volume, children: o }),
|
|
3081
|
+
/* @__PURE__ */ n.jsx("div", { className: c1.footer, children: e })
|
|
3082
|
+
] }), m8 = "_grid_11w5q_1", Z8 = "_header_11w5q_11", j8 = "_content_11w5q_17", d1 = {
|
|
3083
|
+
grid: m8,
|
|
3084
|
+
header: Z8,
|
|
3085
|
+
content: j8,
|
|
2940
3086
|
"left-nav": "_left-nav_11w5q_23"
|
|
2941
|
-
},
|
|
2942
|
-
/* @__PURE__ */ n.jsx("div", { className:
|
|
2943
|
-
|
|
2944
|
-
/* @__PURE__ */ n.jsx("div", { className:
|
|
2945
|
-
] }),
|
|
2946
|
-
grid:
|
|
2947
|
-
header:
|
|
2948
|
-
content:
|
|
2949
|
-
},
|
|
2950
|
-
/* @__PURE__ */ n.jsx("div", { className:
|
|
2951
|
-
/* @__PURE__ */ n.jsx("div", { className:
|
|
3087
|
+
}, P6 = ({ className: t, header: e, content: c, leftNav: o }) => /* @__PURE__ */ n.jsxs("div", { className: `${t} ${d1.grid}`, children: [
|
|
3088
|
+
/* @__PURE__ */ n.jsx("div", { className: d1.header, children: e }),
|
|
3089
|
+
o && /* @__PURE__ */ n.jsx("div", { className: d1.leftNav, children: o }),
|
|
3090
|
+
/* @__PURE__ */ n.jsx("div", { className: d1.content, children: c })
|
|
3091
|
+
] }), C8 = "_grid_1uwfo_1", S8 = "_header_1uwfo_11", b8 = "_content_1uwfo_17", S1 = {
|
|
3092
|
+
grid: C8,
|
|
3093
|
+
header: S8,
|
|
3094
|
+
content: b8
|
|
3095
|
+
}, O6 = ({ className: t, header: e, content: c }) => /* @__PURE__ */ n.jsxs("div", { className: `${t} ${S1.grid}`, children: [
|
|
3096
|
+
/* @__PURE__ */ n.jsx("div", { className: S1.header, children: e }),
|
|
3097
|
+
/* @__PURE__ */ n.jsx("div", { className: S1.content, children: c })
|
|
2952
3098
|
] });
|
|
2953
|
-
function
|
|
3099
|
+
function V6() {
|
|
2954
3100
|
return console.log(location.pathname), location.pathname;
|
|
2955
3101
|
}
|
|
2956
|
-
var
|
|
2957
|
-
class
|
|
2958
|
-
constructor(e,
|
|
3102
|
+
var I8 = /* @__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))(I8 || {});
|
|
3103
|
+
class F6 {
|
|
3104
|
+
constructor(e, c) {
|
|
2959
3105
|
_(this, "path");
|
|
2960
3106
|
_(this, "handler");
|
|
2961
|
-
this.path = e, this.handler =
|
|
3107
|
+
this.path = e, this.handler = c;
|
|
2962
3108
|
}
|
|
2963
3109
|
}
|
|
2964
|
-
const
|
|
2965
|
-
class
|
|
3110
|
+
const k6 = "$off";
|
|
3111
|
+
class U6 {
|
|
2966
3112
|
constructor() {
|
|
2967
3113
|
_(this, "name", "");
|
|
2968
3114
|
_(this, "iconUrl", "");
|
|
2969
3115
|
_(this, "channel", "");
|
|
2970
3116
|
}
|
|
2971
3117
|
}
|
|
2972
|
-
class
|
|
3118
|
+
class W6 {
|
|
2973
3119
|
constructor() {
|
|
2974
3120
|
_(this, "deviceKey");
|
|
2975
3121
|
_(this, "deviceType");
|
|
2976
3122
|
}
|
|
2977
3123
|
}
|
|
2978
|
-
class
|
|
3124
|
+
class H6 {
|
|
2979
3125
|
constructor() {
|
|
2980
3126
|
_(this, "deviceKey");
|
|
2981
3127
|
_(this, "deviceType");
|
|
2982
3128
|
}
|
|
2983
3129
|
}
|
|
2984
|
-
class
|
|
3130
|
+
class K6 {
|
|
2985
3131
|
constructor() {
|
|
2986
3132
|
_(this, "currentShareText");
|
|
2987
3133
|
_(this, "enabled");
|
|
@@ -2989,16 +3135,17 @@ class W6 {
|
|
|
2989
3135
|
}
|
|
2990
3136
|
}
|
|
2991
3137
|
export {
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3138
|
+
H6 as AccessoryDeviceConfiguration,
|
|
3139
|
+
v6 as Clock,
|
|
3140
|
+
I8 as DaysOfWeek,
|
|
3141
|
+
W6 as EnvironmentalDeviceConfiguration,
|
|
3142
|
+
B6 as ErrorBox,
|
|
3143
|
+
T2 as IconButton,
|
|
3144
|
+
D2 as IconMultiAlert,
|
|
3145
|
+
P2 as IconMultiBan,
|
|
3146
|
+
O2 as IconMultiCamera,
|
|
3147
|
+
V2 as IconMultiCheck,
|
|
3148
|
+
F2 as IconMultiController,
|
|
3002
3149
|
k2 as IconMultiDownArrow,
|
|
3003
3150
|
U2 as IconMultiElipses,
|
|
3004
3151
|
W2 as IconMultiFlag,
|
|
@@ -3015,96 +3162,97 @@ export {
|
|
|
3015
3162
|
e8 as IconMultiPrivacy,
|
|
3016
3163
|
t8 as IconMultiQuestion,
|
|
3017
3164
|
n8 as IconMultiRightArrow,
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
l8 as
|
|
3023
|
-
i8 as
|
|
3024
|
-
a8 as
|
|
3025
|
-
u8 as
|
|
3026
|
-
d8 as
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3165
|
+
c8 as IconMultiRoomPC,
|
|
3166
|
+
s8 as IconMultiShade,
|
|
3167
|
+
o8 as IconMultiSun,
|
|
3168
|
+
r8 as IconMultiUpArrow,
|
|
3169
|
+
l8 as IconMultiVolDown,
|
|
3170
|
+
i8 as IconMultiVolMute,
|
|
3171
|
+
a8 as IconMultiVolUp,
|
|
3172
|
+
u8 as IconMultiWireless,
|
|
3173
|
+
d8 as IconMultiX,
|
|
3174
|
+
v8 as IconMultiXbox,
|
|
3175
|
+
D6 as MainLayout,
|
|
3176
|
+
F6 as MessageHandler,
|
|
3177
|
+
n6 as MobileControlProvider,
|
|
3178
|
+
x as MultiStateIconContainer,
|
|
3179
|
+
T6 as NamedIconButton,
|
|
3180
|
+
U6 as PresetChannel,
|
|
3181
|
+
K6 as ShareState,
|
|
3182
|
+
P6 as TechLayout,
|
|
3183
|
+
O6 as TechPinLayout,
|
|
3184
|
+
V6 as getBaseLocation,
|
|
3185
|
+
b1 as httpClient,
|
|
3186
|
+
k6 as roomOffSourceKey,
|
|
3039
3187
|
F as store,
|
|
3040
|
-
|
|
3188
|
+
A8 as uiActions,
|
|
3041
3189
|
v2 as uiReducer,
|
|
3042
|
-
|
|
3190
|
+
B8 as useApiPath,
|
|
3043
3191
|
g2 as useAppConfig,
|
|
3044
3192
|
m2 as useAppDispatch,
|
|
3045
|
-
|
|
3193
|
+
s6 as useAvrControl,
|
|
3046
3194
|
M2 as useClientId,
|
|
3047
3195
|
_2 as useDeviceIBasicVolumeWithFeedback,
|
|
3048
3196
|
o6 as useEndpoint,
|
|
3049
|
-
|
|
3197
|
+
L6 as useGetAllDeviceStateFromRoomConfiguration,
|
|
3050
3198
|
f2 as useGetAllDevices,
|
|
3051
|
-
|
|
3199
|
+
e6 as useGetCurrentPopoverIdForGroup,
|
|
3052
3200
|
L as useGetDevice,
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
|
|
3201
|
+
c6 as useGetIBasicVolumeWithFeedback,
|
|
3202
|
+
J8 as useGetRoomDisplayStates,
|
|
3203
|
+
z8 as useGetZoomRoomControllerKey,
|
|
3204
|
+
v3 as useIBasicVolumeWithFeedback,
|
|
3057
3205
|
r6 as useIChannelMessenger,
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3206
|
+
l6 as useIColor,
|
|
3207
|
+
i6 as useICommunicationMonitor,
|
|
3208
|
+
a6 as useIDPad,
|
|
3209
|
+
u6 as useIDeviceInfoMessenger,
|
|
3210
|
+
d6 as useIDvr,
|
|
3211
|
+
h6 as useIEssentialsRoomCombiner,
|
|
3212
|
+
h3 as useIHasPowerControl,
|
|
3213
|
+
y1 as useIHasSelectableItems,
|
|
3214
|
+
g6 as useILevelControls,
|
|
3215
|
+
f6 as useILightingScenes,
|
|
3216
|
+
w6 as useIMatrixRouting,
|
|
3217
|
+
p6 as useIMcCiscoCodecUserInterfaceAppControl,
|
|
3218
|
+
x6 as useINumeric,
|
|
3219
|
+
M6 as useIProjectorScreenLiftControl,
|
|
3220
|
+
m6 as useIRoomEventSchedule,
|
|
3221
|
+
Z6 as useIRunDirectRouteAction,
|
|
3222
|
+
j6 as useIRunRouteAction,
|
|
3223
|
+
C6 as useISetTopBoxControls,
|
|
3224
|
+
S6 as useIShadesOpenCloseStop,
|
|
3225
|
+
b6 as useIShutdownPromptTimer,
|
|
3226
|
+
I6 as useISwitchedOutput,
|
|
3227
|
+
y6 as useITechPassword,
|
|
3228
|
+
R6 as useITransport,
|
|
3081
3229
|
Z2 as useInitialize,
|
|
3082
|
-
|
|
3230
|
+
E6 as useMobileControlTouchpanelController,
|
|
3083
3231
|
E2 as usePressHoldRelease,
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3232
|
+
q8 as useRoomAdvancedSharingActive,
|
|
3233
|
+
U8 as useRoomCodecContentDestinationKey,
|
|
3234
|
+
T8 as useRoomConfiguration,
|
|
3235
|
+
V8 as useRoomDestinationList,
|
|
3236
|
+
O8 as useRoomDestinations,
|
|
3237
|
+
F8 as useRoomEnvironmentalDevices,
|
|
3238
|
+
$6 as useRoomIBasicVolumeWithFeedback,
|
|
3239
|
+
W8 as useRoomInCall,
|
|
3240
|
+
K8 as useRoomIsCoolingDown,
|
|
3241
|
+
G8 as useRoomIsOn,
|
|
3242
|
+
H8 as useRoomIsWarmingUp,
|
|
3095
3243
|
x2 as useRoomKey,
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3244
|
+
D8 as useRoomName,
|
|
3245
|
+
k8 as useRoomProgramAudioDestinationKey,
|
|
3246
|
+
Y8 as useRoomShareState,
|
|
3247
|
+
P8 as useRoomSourceList,
|
|
3248
|
+
R1 as useRoomState,
|
|
3101
3249
|
w2 as useRoomVolume,
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3250
|
+
Q8 as useShowIncomingCallModal,
|
|
3251
|
+
N8 as useShowModal,
|
|
3252
|
+
t6 as useShowPopoverById,
|
|
3253
|
+
X8 as useShowShutdownModal,
|
|
3254
|
+
A6 as useTimeAndDate,
|
|
3255
|
+
_6 as useTwoWayDisplayBase,
|
|
3108
3256
|
y as useWebsocketContext,
|
|
3109
3257
|
p2 as useWsIsConnected
|
|
3110
3258
|
};
|