@pepperdash/mobile-control-react-app-core 1.2.0 → 1.3.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 +630 -556
- package/dist/mobile-control-react-app-core.umd.js +10 -10
- package/dist/shared/hooks/index.d.ts +1 -0
- package/dist/shared/hooks/index.d.ts.map +1 -1
- package/dist/shared/hooks/interfaces/index.d.ts +5 -0
- package/dist/shared/hooks/interfaces/index.d.ts.map +1 -0
- package/dist/shared/hooks/interfaces/interfaceNames.d.ts +2 -0
- package/dist/shared/hooks/interfaces/interfaceNames.d.ts.map +1 -0
- package/dist/shared/hooks/interfaces/useIHasPowerControl.d.ts +7 -0
- package/dist/shared/hooks/interfaces/useIHasPowerControl.d.ts.map +1 -0
- package/dist/shared/hooks/interfaces/useIRunDirectRouteAction.d.ts +10 -0
- package/dist/shared/hooks/interfaces/useIRunDirectRouteAction.d.ts.map +1 -0
- package/dist/shared/hooks/interfaces/useTwoWayDisplayBase.d.ts +9 -0
- package/dist/shared/hooks/interfaces/useTwoWayDisplayBase.d.ts.map +1 -0
- package/dist/shared/hooks/useGetDeviceStateFromRoomConfiguration.d.ts.map +1 -1
- package/dist/store/devices/devices.slice.d.ts +3 -3
- package/dist/store/devices/devicesSelectors.d.ts +2 -2
- package/dist/store/devices/devicesSelectors.d.ts.map +1 -1
- package/dist/store/hooks.d.ts +2 -2
- package/dist/store/index.d.ts +4 -4
- package/dist/store/rooms/rooms.slice.d.ts +6 -6
- package/dist/store/rooms/roomsSelectors.d.ts +5 -3
- package/dist/store/rooms/roomsSelectors.d.ts.map +1 -1
- package/dist/store/rootReducer.d.ts +8 -8
- package/dist/types/state/index.d.ts +1 -0
- package/dist/types/state/index.d.ts.map +1 -1
- package/dist/types/state/state/DisplayState.d.ts +1 -1
- package/dist/types/state/state/DisplayState.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
4
|
-
import
|
|
5
|
-
import { createSlice as K, combineReducers as
|
|
6
|
-
import { useSelector as
|
|
7
|
-
import * as
|
|
8
|
-
import
|
|
9
|
-
const
|
|
1
|
+
var B1 = Object.defineProperty;
|
|
2
|
+
var L1 = (c, r, t) => r in c ? B1(c, r, { enumerable: !0, configurable: !0, writable: !0, value: t }) : c[r] = t;
|
|
3
|
+
var d = (c, r, t) => (L1(c, typeof r != "symbol" ? r + "" : r, t), t);
|
|
4
|
+
import A1 from "axios";
|
|
5
|
+
import { createSlice as K, combineReducers as T1, configureStore as W3 } from "@reduxjs/toolkit";
|
|
6
|
+
import { useSelector as P1, useDispatch as D1, Provider as O1 } from "react-redux";
|
|
7
|
+
import * as U3 from "lodash";
|
|
8
|
+
import H3, { createContext as V1, useContext as k1, useState as r3, useRef as $1, useCallback as V3, useEffect as Y } from "react";
|
|
9
|
+
const F1 = {
|
|
10
10
|
config: {
|
|
11
11
|
enableDev: !1,
|
|
12
12
|
apiPath: "",
|
|
@@ -16,30 +16,30 @@ const $1 = {
|
|
|
16
16
|
loginMode: "",
|
|
17
17
|
modes: {}
|
|
18
18
|
}
|
|
19
|
-
},
|
|
19
|
+
}, q3 = K({
|
|
20
20
|
name: "appConfig",
|
|
21
|
-
initialState:
|
|
21
|
+
initialState: F1,
|
|
22
22
|
reducers: {
|
|
23
23
|
setAppConfig(c, r) {
|
|
24
24
|
c.config = r.payload;
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
-
}),
|
|
27
|
+
}), W1 = q3.actions, U1 = q3.reducer, H1 = {}, G3 = K({
|
|
28
28
|
name: "devices",
|
|
29
|
-
initialState:
|
|
29
|
+
initialState: H1,
|
|
30
30
|
reducers: {
|
|
31
31
|
setDeviceState(c, r) {
|
|
32
32
|
const t = r.payload.type, l = t.slice(t.lastIndexOf("/") + 1);
|
|
33
33
|
if (!l)
|
|
34
34
|
return;
|
|
35
|
-
const
|
|
35
|
+
const g = r.payload.content, m = c[l] ?? {}, S = U3.merge(m, g);
|
|
36
36
|
return {
|
|
37
37
|
...c,
|
|
38
38
|
[l]: S
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
|
-
}),
|
|
42
|
+
}), q1 = G3.actions, G1 = G3.reducer, Y1 = {}, Y3 = K({
|
|
43
43
|
name: "rooms",
|
|
44
44
|
initialState: Y1,
|
|
45
45
|
reducers: {
|
|
@@ -47,14 +47,14 @@ const $1 = {
|
|
|
47
47
|
const l = r.payload.type.match("/room/(.*)/status");
|
|
48
48
|
if (!l)
|
|
49
49
|
return;
|
|
50
|
-
const
|
|
50
|
+
const g = l[1], m = r.payload.content, S = c[g] ?? {}, b = U3.merge(S, m);
|
|
51
51
|
return {
|
|
52
52
|
...c,
|
|
53
|
-
[
|
|
53
|
+
[g]: b
|
|
54
54
|
};
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
|
-
}),
|
|
57
|
+
}), K1 = Y3.actions, J1 = Y3.reducer, z1 = {
|
|
58
58
|
apiVersion: "",
|
|
59
59
|
serverIsRunningOnProcessorHardware: !1,
|
|
60
60
|
websocket: {
|
|
@@ -73,9 +73,9 @@ const $1 = {
|
|
|
73
73
|
userCode: "",
|
|
74
74
|
qrUrl: ""
|
|
75
75
|
}
|
|
76
|
-
},
|
|
76
|
+
}, K3 = K({
|
|
77
77
|
name: "runtimeConfig",
|
|
78
|
-
initialState:
|
|
78
|
+
initialState: z1,
|
|
79
79
|
reducers: {
|
|
80
80
|
setRuntimeConfig(c, r) {
|
|
81
81
|
c.apiVersion = r.payload.apiVersion, c.serverIsRunningOnProcessorHardware = r.payload.serverIsRunningOnProcessorHardware;
|
|
@@ -99,15 +99,15 @@ const $1 = {
|
|
|
99
99
|
c.roomData.userCode = r.payload.userCode, c.roomData.qrUrl = r.payload.qrUrl;
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
|
-
}), F =
|
|
102
|
+
}), F = K3.actions, X1 = K3.reducer, Q1 = {
|
|
103
103
|
modalVisibility: {
|
|
104
104
|
showShutdownModal: !1,
|
|
105
105
|
showIncomingCallModal: !1
|
|
106
106
|
},
|
|
107
107
|
popoverVisibility: {}
|
|
108
|
-
},
|
|
108
|
+
}, J3 = K({
|
|
109
109
|
name: "ui",
|
|
110
|
-
initialState:
|
|
110
|
+
initialState: Q1,
|
|
111
111
|
reducers: {
|
|
112
112
|
clearAllModals(c) {
|
|
113
113
|
Object.entries(c.modalVisibility).forEach(([r]) => {
|
|
@@ -129,39 +129,39 @@ const $1 = {
|
|
|
129
129
|
}), c.popoverVisibility[r.payload.popoverGroup][r.payload.popoverId] = r.payload.value;
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
|
-
}),
|
|
133
|
-
appConfig:
|
|
134
|
-
runtimeConfig:
|
|
135
|
-
rooms:
|
|
136
|
-
devices:
|
|
137
|
-
ui:
|
|
132
|
+
}), v8 = J3.actions, N1 = J3.reducer, z3 = T1({
|
|
133
|
+
appConfig: U1,
|
|
134
|
+
runtimeConfig: X1,
|
|
135
|
+
rooms: J1,
|
|
136
|
+
devices: G1,
|
|
137
|
+
ui: N1
|
|
138
138
|
});
|
|
139
|
-
|
|
140
|
-
reducer:
|
|
139
|
+
W3({
|
|
140
|
+
reducer: z3
|
|
141
141
|
});
|
|
142
|
-
const f =
|
|
142
|
+
const f = P1, e2 = () => f((c) => c.appConfig.config), h8 = () => f((c) => c.appConfig.config.apiPath), d8 = () => f((c) => Object.values(c.devices)), r2 = (c) => f((r) => r.devices[c]), u8 = (c) => f(
|
|
143
143
|
(r) => {
|
|
144
144
|
var t;
|
|
145
145
|
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.configuration : void 0;
|
|
146
146
|
}
|
|
147
|
-
), u8 = (c) => f(
|
|
148
|
-
(r) => r.rooms[c] ? r.rooms[c] : void 0
|
|
149
147
|
), g8 = (c) => f(
|
|
148
|
+
(r) => r.rooms[c] ? r.rooms[c] : void 0
|
|
149
|
+
), w8 = (c) => f(
|
|
150
150
|
(r) => {
|
|
151
151
|
var t;
|
|
152
152
|
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.name : void 0;
|
|
153
153
|
}
|
|
154
|
-
),
|
|
154
|
+
), x8 = (c) => f(
|
|
155
155
|
(r) => {
|
|
156
156
|
var t, l;
|
|
157
157
|
return r.rooms[c] ? (l = (t = r.rooms[c]) == null ? void 0 : t.volumes) == null ? void 0 : l.master : void 0;
|
|
158
158
|
}
|
|
159
|
-
),
|
|
159
|
+
), f8 = (c) => f(
|
|
160
160
|
(r) => {
|
|
161
161
|
var t, l;
|
|
162
162
|
return r.rooms[c] ? (l = (t = r.rooms[c]) == null ? void 0 : t.configuration) == null ? void 0 : l.sourceList : void 0;
|
|
163
163
|
}
|
|
164
|
-
),
|
|
164
|
+
), p8 = (c) => f(
|
|
165
165
|
(r) => {
|
|
166
166
|
var t, l;
|
|
167
167
|
return r.rooms[c] ? (l = (t = r.rooms[c]) == null ? void 0 : t.configuration) == null ? void 0 : l.displayKeys : void 0;
|
|
@@ -171,56 +171,62 @@ const f = T1, N1 = () => f((c) => c.appConfig.config), a8 = () => f((c) => c.app
|
|
|
171
171
|
var t;
|
|
172
172
|
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.isInCall : void 0;
|
|
173
173
|
}
|
|
174
|
-
),
|
|
174
|
+
), Z8 = (c) => f(
|
|
175
175
|
(r) => {
|
|
176
176
|
var t;
|
|
177
177
|
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.isWarmingUp : void 0;
|
|
178
178
|
}
|
|
179
|
-
),
|
|
179
|
+
), m8 = (c) => f(
|
|
180
180
|
(r) => {
|
|
181
181
|
var t;
|
|
182
182
|
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.isCoolingDown : void 0;
|
|
183
183
|
}
|
|
184
|
-
),
|
|
184
|
+
), j8 = (c) => f(
|
|
185
185
|
(r) => {
|
|
186
186
|
var t;
|
|
187
187
|
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.isOn : void 0;
|
|
188
188
|
}
|
|
189
|
-
),
|
|
189
|
+
), C8 = (c) => f(
|
|
190
190
|
(r) => {
|
|
191
191
|
var t;
|
|
192
192
|
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.advancedSharingActive : void 0;
|
|
193
193
|
}
|
|
194
|
-
),
|
|
194
|
+
), S8 = (c) => f(
|
|
195
195
|
(r) => {
|
|
196
196
|
var t;
|
|
197
197
|
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.share : void 0;
|
|
198
198
|
}
|
|
199
|
-
),
|
|
199
|
+
), b8 = (c) => f((r) => {
|
|
200
|
+
var g, m;
|
|
201
|
+
const t = (m = (g = r.rooms[c]) == null ? void 0 : g.configuration) == null ? void 0 : m.displayKeys;
|
|
202
|
+
return t && Object.values(r.devices).filter(
|
|
203
|
+
(S) => t.includes(S.key)
|
|
204
|
+
) || void 0;
|
|
205
|
+
}), c2 = () => f((c) => c.runtimeConfig.websocket.isConnected), s2 = () => f((c) => c.runtimeConfig.roomData.roomKey), t2 = () => f((c) => c.runtimeConfig.roomData.clientId), y8 = () => f((c) => c.ui.modalVisibility.showShutdownModal), I8 = () => f((c) => c.ui.modalVisibility.showIncomingCallModal), R8 = (c) => f((r) => r.ui.modalVisibility[c]), E8 = (c) => f((r) => {
|
|
200
206
|
const t = r.ui.popoverVisibility[c];
|
|
201
207
|
if (t)
|
|
202
208
|
return Object.keys(t).find((l) => t[l]);
|
|
203
|
-
}),
|
|
209
|
+
}), _8 = (c, r) => f((t) => {
|
|
204
210
|
var l;
|
|
205
211
|
return (l = t.ui.popoverVisibility[c]) == null ? void 0 : l[r];
|
|
206
|
-
}),
|
|
207
|
-
reducer:
|
|
208
|
-
}),
|
|
209
|
-
function
|
|
210
|
-
const c =
|
|
212
|
+
}), D = W3({
|
|
213
|
+
reducer: z3
|
|
214
|
+
}), o2 = D1, h3 = A1.create();
|
|
215
|
+
function n2() {
|
|
216
|
+
const c = o2();
|
|
211
217
|
return async () => {
|
|
212
218
|
try {
|
|
213
|
-
const r = location.pathname.split("/").filter((
|
|
219
|
+
const r = location.pathname.split("/").filter((g) => g.length > 0);
|
|
214
220
|
r.length >= 5 ? r.length = 5 : r.length = 2;
|
|
215
|
-
const t = `/${r.join("/")}`, l = await
|
|
216
|
-
if (
|
|
217
|
-
const
|
|
218
|
-
c(
|
|
219
|
-
const
|
|
220
|
-
|
|
221
|
+
const t = `/${r.join("/")}`, l = await h3.get("/_local-config/_config.local.json", { baseURL: t });
|
|
222
|
+
if (l.status == 200 && l.data) {
|
|
223
|
+
const g = l.data.apiPath;
|
|
224
|
+
c(W1.setAppConfig(l.data));
|
|
225
|
+
const m = await h3.get(`${g}/version`);
|
|
226
|
+
m.status == 200 && m.data && c(F.setRuntimeConfig(m.data));
|
|
221
227
|
}
|
|
222
228
|
} catch (r) {
|
|
223
|
-
console.
|
|
229
|
+
console.error("Error getting config", r);
|
|
224
230
|
}
|
|
225
231
|
return !0;
|
|
226
232
|
};
|
|
@@ -236,56 +242,56 @@ var d3 = { exports: {} }, H = {};
|
|
|
236
242
|
* LICENSE file in the root directory of this source tree.
|
|
237
243
|
*/
|
|
238
244
|
var k3;
|
|
239
|
-
function
|
|
245
|
+
function l2() {
|
|
240
246
|
return k3 || (k3 = 1, process.env.NODE_ENV !== "production" && function() {
|
|
241
|
-
var c =
|
|
242
|
-
function
|
|
247
|
+
var c = H3, r = Symbol.for("react.element"), t = Symbol.for("react.portal"), l = Symbol.for("react.fragment"), g = Symbol.for("react.strict_mode"), m = Symbol.for("react.profiler"), S = Symbol.for("react.provider"), b = Symbol.for("react.context"), x = Symbol.for("react.forward_ref"), E = Symbol.for("react.suspense"), j = Symbol.for("react.suspense_list"), y = Symbol.for("react.memo"), _ = Symbol.for("react.lazy"), B = Symbol.for("react.offscreen"), M = Symbol.iterator, A = "@@iterator";
|
|
248
|
+
function O(s) {
|
|
243
249
|
if (s === null || typeof s != "object")
|
|
244
250
|
return null;
|
|
245
|
-
var o = M && s[M] || s[
|
|
251
|
+
var o = M && s[M] || s[A];
|
|
246
252
|
return typeof o == "function" ? o : null;
|
|
247
253
|
}
|
|
248
|
-
var
|
|
249
|
-
function
|
|
254
|
+
var p = c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
255
|
+
function I(s) {
|
|
250
256
|
{
|
|
251
257
|
for (var o = arguments.length, n = new Array(o > 1 ? o - 1 : 0), i = 1; i < o; i++)
|
|
252
258
|
n[i - 1] = arguments[i];
|
|
253
|
-
|
|
259
|
+
Q3("error", s, n);
|
|
254
260
|
}
|
|
255
261
|
}
|
|
256
|
-
function
|
|
262
|
+
function Q3(s, o, n) {
|
|
257
263
|
{
|
|
258
|
-
var i =
|
|
259
|
-
|
|
260
|
-
var
|
|
261
|
-
return String(
|
|
264
|
+
var i = p.ReactDebugCurrentFrame, h = i.getStackAddendum();
|
|
265
|
+
h !== "" && (o += "%s", n = n.concat([h]));
|
|
266
|
+
var w = n.map(function(v) {
|
|
267
|
+
return String(v);
|
|
262
268
|
});
|
|
263
|
-
|
|
269
|
+
w.unshift("Warning: " + o), Function.prototype.apply.call(console[s], console, w);
|
|
264
270
|
}
|
|
265
271
|
}
|
|
266
|
-
var
|
|
267
|
-
|
|
268
|
-
function
|
|
269
|
-
return !!(typeof s == "string" || typeof s == "function" || s === l || s ===
|
|
272
|
+
var N3 = !1, e1 = !1, r1 = !1, c1 = !1, s1 = !1, g3;
|
|
273
|
+
g3 = Symbol.for("react.module.reference");
|
|
274
|
+
function t1(s) {
|
|
275
|
+
return !!(typeof s == "string" || typeof s == "function" || s === l || s === m || s1 || s === g || s === E || s === j || c1 || s === B || N3 || e1 || r1 || typeof s == "object" && s !== null && (s.$$typeof === _ || s.$$typeof === y || s.$$typeof === S || s.$$typeof === b || s.$$typeof === x || // This needs to include all possible module reference object
|
|
270
276
|
// types supported by any Flight configuration anywhere since
|
|
271
277
|
// we don't know which Flight build this will end up being used
|
|
272
278
|
// with.
|
|
273
|
-
s.$$typeof ===
|
|
279
|
+
s.$$typeof === g3 || s.getModuleId !== void 0));
|
|
274
280
|
}
|
|
275
|
-
function
|
|
281
|
+
function o1(s, o, n) {
|
|
276
282
|
var i = s.displayName;
|
|
277
283
|
if (i)
|
|
278
284
|
return i;
|
|
279
|
-
var
|
|
280
|
-
return
|
|
285
|
+
var h = o.displayName || o.name || "";
|
|
286
|
+
return h !== "" ? n + "(" + h + ")" : n;
|
|
281
287
|
}
|
|
282
|
-
function
|
|
288
|
+
function w3(s) {
|
|
283
289
|
return s.displayName || "Context";
|
|
284
290
|
}
|
|
285
|
-
function
|
|
291
|
+
function T(s) {
|
|
286
292
|
if (s == null)
|
|
287
293
|
return null;
|
|
288
|
-
if (typeof s.tag == "number" &&
|
|
294
|
+
if (typeof s.tag == "number" && I("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof s == "function")
|
|
289
295
|
return s.displayName || s.name || null;
|
|
290
296
|
if (typeof s == "string")
|
|
291
297
|
return s;
|
|
@@ -294,32 +300,32 @@ function o2() {
|
|
|
294
300
|
return "Fragment";
|
|
295
301
|
case t:
|
|
296
302
|
return "Portal";
|
|
297
|
-
case
|
|
303
|
+
case m:
|
|
298
304
|
return "Profiler";
|
|
299
|
-
case
|
|
305
|
+
case g:
|
|
300
306
|
return "StrictMode";
|
|
301
|
-
case
|
|
307
|
+
case E:
|
|
302
308
|
return "Suspense";
|
|
303
|
-
case
|
|
309
|
+
case j:
|
|
304
310
|
return "SuspenseList";
|
|
305
311
|
}
|
|
306
312
|
if (typeof s == "object")
|
|
307
313
|
switch (s.$$typeof) {
|
|
308
|
-
case
|
|
314
|
+
case b:
|
|
309
315
|
var o = s;
|
|
310
|
-
return
|
|
316
|
+
return w3(o) + ".Consumer";
|
|
311
317
|
case S:
|
|
312
318
|
var n = s;
|
|
313
|
-
return
|
|
314
|
-
case
|
|
315
|
-
return
|
|
316
|
-
case
|
|
319
|
+
return w3(n._context) + ".Provider";
|
|
320
|
+
case x:
|
|
321
|
+
return o1(s, s.render, "ForwardRef");
|
|
322
|
+
case y:
|
|
317
323
|
var i = s.displayName || null;
|
|
318
|
-
return i !== null ? i :
|
|
319
|
-
case
|
|
320
|
-
var
|
|
324
|
+
return i !== null ? i : T(s.type) || "Memo";
|
|
325
|
+
case _: {
|
|
326
|
+
var h = s, w = h._payload, v = h._init;
|
|
321
327
|
try {
|
|
322
|
-
return
|
|
328
|
+
return T(v(w));
|
|
323
329
|
} catch {
|
|
324
330
|
return null;
|
|
325
331
|
}
|
|
@@ -327,18 +333,18 @@ function o2() {
|
|
|
327
333
|
}
|
|
328
334
|
return null;
|
|
329
335
|
}
|
|
330
|
-
var
|
|
331
|
-
function
|
|
336
|
+
var V = Object.assign, W = 0, x3, f3, p3, M3, Z3, m3, j3;
|
|
337
|
+
function C3() {
|
|
332
338
|
}
|
|
333
|
-
|
|
334
|
-
function
|
|
339
|
+
C3.__reactDisabledLog = !0;
|
|
340
|
+
function n1() {
|
|
335
341
|
{
|
|
336
342
|
if (W === 0) {
|
|
337
|
-
|
|
343
|
+
x3 = console.log, f3 = console.info, p3 = console.warn, M3 = console.error, Z3 = console.group, m3 = console.groupCollapsed, j3 = console.groupEnd;
|
|
338
344
|
var s = {
|
|
339
345
|
configurable: !0,
|
|
340
346
|
enumerable: !0,
|
|
341
|
-
value:
|
|
347
|
+
value: C3,
|
|
342
348
|
writable: !0
|
|
343
349
|
};
|
|
344
350
|
Object.defineProperties(console, {
|
|
@@ -354,7 +360,7 @@ function o2() {
|
|
|
354
360
|
W++;
|
|
355
361
|
}
|
|
356
362
|
}
|
|
357
|
-
function
|
|
363
|
+
function l1() {
|
|
358
364
|
{
|
|
359
365
|
if (W--, W === 0) {
|
|
360
366
|
var s = {
|
|
@@ -363,40 +369,40 @@ function o2() {
|
|
|
363
369
|
writable: !0
|
|
364
370
|
};
|
|
365
371
|
Object.defineProperties(console, {
|
|
366
|
-
log:
|
|
367
|
-
value: w3
|
|
368
|
-
}),
|
|
369
|
-
info: O({}, s, {
|
|
372
|
+
log: V({}, s, {
|
|
370
373
|
value: x3
|
|
371
374
|
}),
|
|
372
|
-
|
|
375
|
+
info: V({}, s, {
|
|
373
376
|
value: f3
|
|
374
377
|
}),
|
|
375
|
-
|
|
376
|
-
value: M3
|
|
377
|
-
}),
|
|
378
|
-
group: O({}, s, {
|
|
378
|
+
warn: V({}, s, {
|
|
379
379
|
value: p3
|
|
380
380
|
}),
|
|
381
|
-
|
|
381
|
+
error: V({}, s, {
|
|
382
|
+
value: M3
|
|
383
|
+
}),
|
|
384
|
+
group: V({}, s, {
|
|
382
385
|
value: Z3
|
|
383
386
|
}),
|
|
384
|
-
|
|
387
|
+
groupCollapsed: V({}, s, {
|
|
385
388
|
value: m3
|
|
389
|
+
}),
|
|
390
|
+
groupEnd: V({}, s, {
|
|
391
|
+
value: j3
|
|
386
392
|
})
|
|
387
393
|
});
|
|
388
394
|
}
|
|
389
|
-
W < 0 &&
|
|
395
|
+
W < 0 && I("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
|
390
396
|
}
|
|
391
397
|
}
|
|
392
|
-
var c3 =
|
|
398
|
+
var c3 = p.ReactCurrentDispatcher, s3;
|
|
393
399
|
function J(s, o, n) {
|
|
394
400
|
{
|
|
395
401
|
if (s3 === void 0)
|
|
396
402
|
try {
|
|
397
403
|
throw Error();
|
|
398
|
-
} catch (
|
|
399
|
-
var i =
|
|
404
|
+
} catch (h) {
|
|
405
|
+
var i = h.stack.trim().match(/\n( *(at )?)/);
|
|
400
406
|
s3 = i && i[1] || "";
|
|
401
407
|
}
|
|
402
408
|
return `
|
|
@@ -405,10 +411,10 @@ function o2() {
|
|
|
405
411
|
}
|
|
406
412
|
var t3 = !1, z;
|
|
407
413
|
{
|
|
408
|
-
var
|
|
409
|
-
z = new
|
|
414
|
+
var i1 = typeof WeakMap == "function" ? WeakMap : Map;
|
|
415
|
+
z = new i1();
|
|
410
416
|
}
|
|
411
|
-
function
|
|
417
|
+
function S3(s, o) {
|
|
412
418
|
if (!s || t3)
|
|
413
419
|
return "";
|
|
414
420
|
{
|
|
@@ -418,71 +424,71 @@ function o2() {
|
|
|
418
424
|
}
|
|
419
425
|
var i;
|
|
420
426
|
t3 = !0;
|
|
421
|
-
var
|
|
427
|
+
var h = Error.prepareStackTrace;
|
|
422
428
|
Error.prepareStackTrace = void 0;
|
|
423
|
-
var
|
|
424
|
-
|
|
429
|
+
var w;
|
|
430
|
+
w = c3.current, c3.current = null, n1();
|
|
425
431
|
try {
|
|
426
432
|
if (o) {
|
|
427
|
-
var
|
|
433
|
+
var v = function() {
|
|
428
434
|
throw Error();
|
|
429
435
|
};
|
|
430
|
-
if (Object.defineProperty(
|
|
436
|
+
if (Object.defineProperty(v.prototype, "props", {
|
|
431
437
|
set: function() {
|
|
432
438
|
throw Error();
|
|
433
439
|
}
|
|
434
440
|
}), typeof Reflect == "object" && Reflect.construct) {
|
|
435
441
|
try {
|
|
436
|
-
Reflect.construct(
|
|
437
|
-
} catch (
|
|
438
|
-
i =
|
|
442
|
+
Reflect.construct(v, []);
|
|
443
|
+
} catch (P) {
|
|
444
|
+
i = P;
|
|
439
445
|
}
|
|
440
|
-
Reflect.construct(s, [],
|
|
446
|
+
Reflect.construct(s, [], v);
|
|
441
447
|
} else {
|
|
442
448
|
try {
|
|
443
|
-
|
|
444
|
-
} catch (
|
|
445
|
-
i =
|
|
449
|
+
v.call();
|
|
450
|
+
} catch (P) {
|
|
451
|
+
i = P;
|
|
446
452
|
}
|
|
447
|
-
s.call(
|
|
453
|
+
s.call(v.prototype);
|
|
448
454
|
}
|
|
449
455
|
} else {
|
|
450
456
|
try {
|
|
451
457
|
throw Error();
|
|
452
|
-
} catch (
|
|
453
|
-
i =
|
|
458
|
+
} catch (P) {
|
|
459
|
+
i = P;
|
|
454
460
|
}
|
|
455
461
|
s();
|
|
456
462
|
}
|
|
457
|
-
} catch (
|
|
458
|
-
if (
|
|
459
|
-
for (var a =
|
|
460
|
-
`),
|
|
461
|
-
`),
|
|
462
|
-
|
|
463
|
-
for (;
|
|
464
|
-
if (a[
|
|
465
|
-
if (
|
|
463
|
+
} catch (P) {
|
|
464
|
+
if (P && i && typeof P.stack == "string") {
|
|
465
|
+
for (var a = P.stack.split(`
|
|
466
|
+
`), R = i.stack.split(`
|
|
467
|
+
`), Z = a.length - 1, C = R.length - 1; Z >= 1 && C >= 0 && a[Z] !== R[C]; )
|
|
468
|
+
C--;
|
|
469
|
+
for (; Z >= 1 && C >= 0; Z--, C--)
|
|
470
|
+
if (a[Z] !== R[C]) {
|
|
471
|
+
if (Z !== 1 || C !== 1)
|
|
466
472
|
do
|
|
467
|
-
if (
|
|
468
|
-
var
|
|
469
|
-
` + a[
|
|
470
|
-
return s.displayName &&
|
|
473
|
+
if (Z--, C--, C < 0 || a[Z] !== R[C]) {
|
|
474
|
+
var L = `
|
|
475
|
+
` + a[Z].replace(" at new ", " at ");
|
|
476
|
+
return s.displayName && L.includes("<anonymous>") && (L = L.replace("<anonymous>", s.displayName)), typeof s == "function" && z.set(s, L), L;
|
|
471
477
|
}
|
|
472
|
-
while (
|
|
478
|
+
while (Z >= 1 && C >= 0);
|
|
473
479
|
break;
|
|
474
480
|
}
|
|
475
481
|
}
|
|
476
482
|
} finally {
|
|
477
|
-
t3 = !1, c3.current =
|
|
483
|
+
t3 = !1, c3.current = w, l1(), Error.prepareStackTrace = h;
|
|
478
484
|
}
|
|
479
|
-
var $ = s ? s.displayName || s.name : "",
|
|
480
|
-
return typeof s == "function" && z.set(s,
|
|
485
|
+
var $ = s ? s.displayName || s.name : "", O3 = $ ? J($) : "";
|
|
486
|
+
return typeof s == "function" && z.set(s, O3), O3;
|
|
481
487
|
}
|
|
482
|
-
function
|
|
483
|
-
return
|
|
488
|
+
function a1(s, o, n) {
|
|
489
|
+
return S3(s, !1);
|
|
484
490
|
}
|
|
485
|
-
function
|
|
491
|
+
function v1(s) {
|
|
486
492
|
var o = s.prototype;
|
|
487
493
|
return !!(o && o.isReactComponent);
|
|
488
494
|
}
|
|
@@ -490,90 +496,90 @@ function o2() {
|
|
|
490
496
|
if (s == null)
|
|
491
497
|
return "";
|
|
492
498
|
if (typeof s == "function")
|
|
493
|
-
return
|
|
499
|
+
return S3(s, v1(s));
|
|
494
500
|
if (typeof s == "string")
|
|
495
501
|
return J(s);
|
|
496
502
|
switch (s) {
|
|
497
|
-
case
|
|
503
|
+
case E:
|
|
498
504
|
return J("Suspense");
|
|
499
|
-
case
|
|
505
|
+
case j:
|
|
500
506
|
return J("SuspenseList");
|
|
501
507
|
}
|
|
502
508
|
if (typeof s == "object")
|
|
503
509
|
switch (s.$$typeof) {
|
|
504
|
-
case
|
|
505
|
-
return
|
|
506
|
-
case
|
|
510
|
+
case x:
|
|
511
|
+
return a1(s.render);
|
|
512
|
+
case y:
|
|
507
513
|
return X(s.type, o, n);
|
|
508
|
-
case
|
|
509
|
-
var i = s,
|
|
514
|
+
case _: {
|
|
515
|
+
var i = s, h = i._payload, w = i._init;
|
|
510
516
|
try {
|
|
511
|
-
return X(
|
|
517
|
+
return X(w(h), o, n);
|
|
512
518
|
} catch {
|
|
513
519
|
}
|
|
514
520
|
}
|
|
515
521
|
}
|
|
516
522
|
return "";
|
|
517
523
|
}
|
|
518
|
-
var Q = Object.prototype.hasOwnProperty,
|
|
524
|
+
var Q = Object.prototype.hasOwnProperty, b3 = {}, y3 = p.ReactDebugCurrentFrame;
|
|
519
525
|
function N(s) {
|
|
520
526
|
if (s) {
|
|
521
527
|
var o = s._owner, n = X(s.type, s._source, o ? o.type : null);
|
|
522
|
-
|
|
528
|
+
y3.setExtraStackFrame(n);
|
|
523
529
|
} else
|
|
524
|
-
|
|
530
|
+
y3.setExtraStackFrame(null);
|
|
525
531
|
}
|
|
526
|
-
function h1(s, o, n, i,
|
|
532
|
+
function h1(s, o, n, i, h) {
|
|
527
533
|
{
|
|
528
|
-
var
|
|
529
|
-
for (var
|
|
530
|
-
if (
|
|
534
|
+
var w = Function.call.bind(Q);
|
|
535
|
+
for (var v in s)
|
|
536
|
+
if (w(s, v)) {
|
|
531
537
|
var a = void 0;
|
|
532
538
|
try {
|
|
533
|
-
if (typeof s[
|
|
534
|
-
var
|
|
535
|
-
throw
|
|
539
|
+
if (typeof s[v] != "function") {
|
|
540
|
+
var R = Error((i || "React class") + ": " + n + " type `" + v + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof s[v] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
541
|
+
throw R.name = "Invariant Violation", R;
|
|
536
542
|
}
|
|
537
|
-
a = s[
|
|
538
|
-
} catch (
|
|
539
|
-
a =
|
|
543
|
+
a = s[v](o, v, i, n, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
544
|
+
} catch (Z) {
|
|
545
|
+
a = Z;
|
|
540
546
|
}
|
|
541
|
-
a && !(a instanceof Error) && (N(
|
|
547
|
+
a && !(a instanceof Error) && (N(h), I("%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).", i || "React class", n, v, typeof a), N(null)), a instanceof Error && !(a.message in b3) && (b3[a.message] = !0, N(h), I("Failed %s type: %s", n, a.message), N(null));
|
|
542
548
|
}
|
|
543
549
|
}
|
|
544
550
|
}
|
|
545
|
-
var
|
|
551
|
+
var d1 = Array.isArray;
|
|
546
552
|
function o3(s) {
|
|
547
|
-
return
|
|
553
|
+
return d1(s);
|
|
548
554
|
}
|
|
549
|
-
function
|
|
555
|
+
function u1(s) {
|
|
550
556
|
{
|
|
551
557
|
var o = typeof Symbol == "function" && Symbol.toStringTag, n = o && s[Symbol.toStringTag] || s.constructor.name || "Object";
|
|
552
558
|
return n;
|
|
553
559
|
}
|
|
554
560
|
}
|
|
555
|
-
function
|
|
561
|
+
function g1(s) {
|
|
556
562
|
try {
|
|
557
|
-
return
|
|
563
|
+
return I3(s), !1;
|
|
558
564
|
} catch {
|
|
559
565
|
return !0;
|
|
560
566
|
}
|
|
561
567
|
}
|
|
562
|
-
function
|
|
568
|
+
function I3(s) {
|
|
563
569
|
return "" + s;
|
|
564
570
|
}
|
|
565
|
-
function
|
|
566
|
-
if (
|
|
567
|
-
return
|
|
571
|
+
function R3(s) {
|
|
572
|
+
if (g1(s))
|
|
573
|
+
return I("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", u1(s)), I3(s);
|
|
568
574
|
}
|
|
569
|
-
var U =
|
|
575
|
+
var U = p.ReactCurrentOwner, w1 = {
|
|
570
576
|
key: !0,
|
|
571
577
|
ref: !0,
|
|
572
578
|
__self: !0,
|
|
573
579
|
__source: !0
|
|
574
|
-
},
|
|
580
|
+
}, E3, _3, n3;
|
|
575
581
|
n3 = {};
|
|
576
|
-
function
|
|
582
|
+
function x1(s) {
|
|
577
583
|
if (Q.call(s, "ref")) {
|
|
578
584
|
var o = Object.getOwnPropertyDescriptor(s, "ref").get;
|
|
579
585
|
if (o && o.isReactWarning)
|
|
@@ -581,7 +587,7 @@ function o2() {
|
|
|
581
587
|
}
|
|
582
588
|
return s.ref !== void 0;
|
|
583
589
|
}
|
|
584
|
-
function
|
|
590
|
+
function f1(s) {
|
|
585
591
|
if (Q.call(s, "key")) {
|
|
586
592
|
var o = Object.getOwnPropertyDescriptor(s, "key").get;
|
|
587
593
|
if (o && o.isReactWarning)
|
|
@@ -589,16 +595,16 @@ function o2() {
|
|
|
589
595
|
}
|
|
590
596
|
return s.key !== void 0;
|
|
591
597
|
}
|
|
592
|
-
function
|
|
598
|
+
function p1(s, o) {
|
|
593
599
|
if (typeof s.ref == "string" && U.current && o && U.current.stateNode !== o) {
|
|
594
|
-
var n =
|
|
595
|
-
n3[n] || (
|
|
600
|
+
var n = T(U.current.type);
|
|
601
|
+
n3[n] || (I('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', T(U.current.type), s.ref), n3[n] = !0);
|
|
596
602
|
}
|
|
597
603
|
}
|
|
598
604
|
function M1(s, o) {
|
|
599
605
|
{
|
|
600
606
|
var n = function() {
|
|
601
|
-
|
|
607
|
+
E3 || (E3 = !0, I("%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)", o));
|
|
602
608
|
};
|
|
603
609
|
n.isReactWarning = !0, Object.defineProperty(s, "key", {
|
|
604
610
|
get: n,
|
|
@@ -606,10 +612,10 @@ function o2() {
|
|
|
606
612
|
});
|
|
607
613
|
}
|
|
608
614
|
}
|
|
609
|
-
function
|
|
615
|
+
function Z1(s, o) {
|
|
610
616
|
{
|
|
611
617
|
var n = function() {
|
|
612
|
-
|
|
618
|
+
_3 || (_3 = !0, I("%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)", o));
|
|
613
619
|
};
|
|
614
620
|
n.isReactWarning = !0, Object.defineProperty(s, "ref", {
|
|
615
621
|
get: n,
|
|
@@ -617,7 +623,7 @@ function o2() {
|
|
|
617
623
|
});
|
|
618
624
|
}
|
|
619
625
|
}
|
|
620
|
-
var
|
|
626
|
+
var m1 = function(s, o, n, i, h, w, v) {
|
|
621
627
|
var a = {
|
|
622
628
|
// This tag allows us to uniquely identify this as a React Element
|
|
623
629
|
$$typeof: r,
|
|
@@ -625,9 +631,9 @@ function o2() {
|
|
|
625
631
|
type: s,
|
|
626
632
|
key: o,
|
|
627
633
|
ref: n,
|
|
628
|
-
props:
|
|
634
|
+
props: v,
|
|
629
635
|
// Record the component responsible for creating this element.
|
|
630
|
-
_owner:
|
|
636
|
+
_owner: w
|
|
631
637
|
};
|
|
632
638
|
return a._store = {}, Object.defineProperty(a._store, "validated", {
|
|
633
639
|
configurable: !1,
|
|
@@ -643,44 +649,44 @@ function o2() {
|
|
|
643
649
|
configurable: !1,
|
|
644
650
|
enumerable: !1,
|
|
645
651
|
writable: !1,
|
|
646
|
-
value:
|
|
652
|
+
value: h
|
|
647
653
|
}), Object.freeze && (Object.freeze(a.props), Object.freeze(a)), a;
|
|
648
654
|
};
|
|
649
|
-
function
|
|
655
|
+
function j1(s, o, n, i, h) {
|
|
650
656
|
{
|
|
651
|
-
var
|
|
652
|
-
n !== void 0 && (
|
|
653
|
-
for (
|
|
654
|
-
Q.call(o,
|
|
657
|
+
var w, v = {}, a = null, R = null;
|
|
658
|
+
n !== void 0 && (R3(n), a = "" + n), f1(o) && (R3(o.key), a = "" + o.key), x1(o) && (R = o.ref, p1(o, h));
|
|
659
|
+
for (w in o)
|
|
660
|
+
Q.call(o, w) && !w1.hasOwnProperty(w) && (v[w] = o[w]);
|
|
655
661
|
if (s && s.defaultProps) {
|
|
656
|
-
var
|
|
657
|
-
for (
|
|
658
|
-
|
|
662
|
+
var Z = s.defaultProps;
|
|
663
|
+
for (w in Z)
|
|
664
|
+
v[w] === void 0 && (v[w] = Z[w]);
|
|
659
665
|
}
|
|
660
|
-
if (a ||
|
|
661
|
-
var
|
|
662
|
-
a && M1(
|
|
666
|
+
if (a || R) {
|
|
667
|
+
var C = typeof s == "function" ? s.displayName || s.name || "Unknown" : s;
|
|
668
|
+
a && M1(v, C), R && Z1(v, C);
|
|
663
669
|
}
|
|
664
|
-
return
|
|
670
|
+
return m1(s, a, R, h, i, U.current, v);
|
|
665
671
|
}
|
|
666
672
|
}
|
|
667
|
-
var l3 =
|
|
668
|
-
function
|
|
673
|
+
var l3 = p.ReactCurrentOwner, B3 = p.ReactDebugCurrentFrame;
|
|
674
|
+
function k(s) {
|
|
669
675
|
if (s) {
|
|
670
676
|
var o = s._owner, n = X(s.type, s._source, o ? o.type : null);
|
|
671
|
-
|
|
677
|
+
B3.setExtraStackFrame(n);
|
|
672
678
|
} else
|
|
673
|
-
|
|
679
|
+
B3.setExtraStackFrame(null);
|
|
674
680
|
}
|
|
675
681
|
var i3;
|
|
676
682
|
i3 = !1;
|
|
677
683
|
function a3(s) {
|
|
678
684
|
return typeof s == "object" && s !== null && s.$$typeof === r;
|
|
679
685
|
}
|
|
680
|
-
function
|
|
686
|
+
function L3() {
|
|
681
687
|
{
|
|
682
688
|
if (l3.current) {
|
|
683
|
-
var s =
|
|
689
|
+
var s = T(l3.current.type);
|
|
684
690
|
if (s)
|
|
685
691
|
return `
|
|
686
692
|
|
|
@@ -689,7 +695,7 @@ Check the render method of \`` + s + "`.";
|
|
|
689
695
|
return "";
|
|
690
696
|
}
|
|
691
697
|
}
|
|
692
|
-
function
|
|
698
|
+
function C1(s) {
|
|
693
699
|
{
|
|
694
700
|
if (s !== void 0) {
|
|
695
701
|
var o = s.fileName.replace(/^.*[\\\/]/, ""), n = s.lineNumber;
|
|
@@ -700,10 +706,10 @@ Check your code at ` + o + ":" + n + ".";
|
|
|
700
706
|
return "";
|
|
701
707
|
}
|
|
702
708
|
}
|
|
703
|
-
var
|
|
704
|
-
function
|
|
709
|
+
var A3 = {};
|
|
710
|
+
function S1(s) {
|
|
705
711
|
{
|
|
706
|
-
var o =
|
|
712
|
+
var o = L3();
|
|
707
713
|
if (!o) {
|
|
708
714
|
var n = typeof s == "string" ? s : s.displayName || s.name;
|
|
709
715
|
n && (o = `
|
|
@@ -713,39 +719,39 @@ Check the top-level render call using <` + n + ">.");
|
|
|
713
719
|
return o;
|
|
714
720
|
}
|
|
715
721
|
}
|
|
716
|
-
function
|
|
722
|
+
function T3(s, o) {
|
|
717
723
|
{
|
|
718
724
|
if (!s._store || s._store.validated || s.key != null)
|
|
719
725
|
return;
|
|
720
726
|
s._store.validated = !0;
|
|
721
|
-
var n =
|
|
722
|
-
if (
|
|
727
|
+
var n = S1(o);
|
|
728
|
+
if (A3[n])
|
|
723
729
|
return;
|
|
724
|
-
|
|
730
|
+
A3[n] = !0;
|
|
725
731
|
var i = "";
|
|
726
|
-
s && s._owner && s._owner !== l3.current && (i = " It was passed a child from " +
|
|
732
|
+
s && s._owner && s._owner !== l3.current && (i = " It was passed a child from " + T(s._owner.type) + "."), k(s), I('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', n, i), k(null);
|
|
727
733
|
}
|
|
728
734
|
}
|
|
729
|
-
function
|
|
735
|
+
function P3(s, o) {
|
|
730
736
|
{
|
|
731
737
|
if (typeof s != "object")
|
|
732
738
|
return;
|
|
733
739
|
if (o3(s))
|
|
734
740
|
for (var n = 0; n < s.length; n++) {
|
|
735
741
|
var i = s[n];
|
|
736
|
-
a3(i) &&
|
|
742
|
+
a3(i) && T3(i, o);
|
|
737
743
|
}
|
|
738
744
|
else if (a3(s))
|
|
739
745
|
s._store && (s._store.validated = !0);
|
|
740
746
|
else if (s) {
|
|
741
|
-
var
|
|
742
|
-
if (typeof
|
|
743
|
-
for (var
|
|
744
|
-
a3(
|
|
747
|
+
var h = O(s);
|
|
748
|
+
if (typeof h == "function" && h !== s.entries)
|
|
749
|
+
for (var w = h.call(s), v; !(v = w.next()).done; )
|
|
750
|
+
a3(v.value) && T3(v.value, o);
|
|
745
751
|
}
|
|
746
752
|
}
|
|
747
753
|
}
|
|
748
|
-
function
|
|
754
|
+
function b1(s) {
|
|
749
755
|
{
|
|
750
756
|
var o = s.type;
|
|
751
757
|
if (o == null || typeof o == "string")
|
|
@@ -753,73 +759,73 @@ Check the top-level render call using <` + n + ">.");
|
|
|
753
759
|
var n;
|
|
754
760
|
if (typeof o == "function")
|
|
755
761
|
n = o.propTypes;
|
|
756
|
-
else if (typeof o == "object" && (o.$$typeof ===
|
|
762
|
+
else if (typeof o == "object" && (o.$$typeof === x || // Note: Memo only checks outer props here.
|
|
757
763
|
// Inner props are checked in the reconciler.
|
|
758
|
-
o.$$typeof ===
|
|
764
|
+
o.$$typeof === y))
|
|
759
765
|
n = o.propTypes;
|
|
760
766
|
else
|
|
761
767
|
return;
|
|
762
768
|
if (n) {
|
|
763
|
-
var i =
|
|
769
|
+
var i = T(o);
|
|
764
770
|
h1(n, s.props, "prop", i, s);
|
|
765
771
|
} else if (o.PropTypes !== void 0 && !i3) {
|
|
766
772
|
i3 = !0;
|
|
767
|
-
var
|
|
768
|
-
|
|
773
|
+
var h = T(o);
|
|
774
|
+
I("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", h || "Unknown");
|
|
769
775
|
}
|
|
770
|
-
typeof o.getDefaultProps == "function" && !o.getDefaultProps.isReactClassApproved &&
|
|
776
|
+
typeof o.getDefaultProps == "function" && !o.getDefaultProps.isReactClassApproved && I("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
|
771
777
|
}
|
|
772
778
|
}
|
|
773
|
-
function
|
|
779
|
+
function y1(s) {
|
|
774
780
|
{
|
|
775
781
|
for (var o = Object.keys(s.props), n = 0; n < o.length; n++) {
|
|
776
782
|
var i = o[n];
|
|
777
783
|
if (i !== "children" && i !== "key") {
|
|
778
|
-
|
|
784
|
+
k(s), I("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", i), k(null);
|
|
779
785
|
break;
|
|
780
786
|
}
|
|
781
787
|
}
|
|
782
|
-
s.ref !== null && (
|
|
788
|
+
s.ref !== null && (k(s), I("Invalid attribute `ref` supplied to `React.Fragment`."), k(null));
|
|
783
789
|
}
|
|
784
790
|
}
|
|
785
|
-
function
|
|
791
|
+
function D3(s, o, n, i, h, w) {
|
|
786
792
|
{
|
|
787
|
-
var
|
|
788
|
-
if (!
|
|
793
|
+
var v = t1(s);
|
|
794
|
+
if (!v) {
|
|
789
795
|
var a = "";
|
|
790
796
|
(s === void 0 || typeof s == "object" && s !== null && Object.keys(s).length === 0) && (a += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");
|
|
791
|
-
var
|
|
792
|
-
|
|
793
|
-
var
|
|
794
|
-
s === null ?
|
|
795
|
-
}
|
|
796
|
-
var
|
|
797
|
-
if (
|
|
798
|
-
return
|
|
799
|
-
if (
|
|
800
|
-
var
|
|
801
|
-
if (
|
|
797
|
+
var R = C1(h);
|
|
798
|
+
R ? a += R : a += L3();
|
|
799
|
+
var Z;
|
|
800
|
+
s === null ? Z = "null" : o3(s) ? Z = "array" : s !== void 0 && s.$$typeof === r ? (Z = "<" + (T(s.type) || "Unknown") + " />", a = " Did you accidentally export a JSX literal instead of a component?") : Z = typeof s, I("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", Z, a);
|
|
801
|
+
}
|
|
802
|
+
var C = j1(s, o, n, h, w);
|
|
803
|
+
if (C == null)
|
|
804
|
+
return C;
|
|
805
|
+
if (v) {
|
|
806
|
+
var L = o.children;
|
|
807
|
+
if (L !== void 0)
|
|
802
808
|
if (i)
|
|
803
|
-
if (o3(
|
|
804
|
-
for (var $ = 0; $ <
|
|
805
|
-
|
|
806
|
-
Object.freeze && Object.freeze(
|
|
809
|
+
if (o3(L)) {
|
|
810
|
+
for (var $ = 0; $ < L.length; $++)
|
|
811
|
+
P3(L[$], s);
|
|
812
|
+
Object.freeze && Object.freeze(L);
|
|
807
813
|
} else
|
|
808
|
-
|
|
814
|
+
I("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
|
809
815
|
else
|
|
810
|
-
|
|
816
|
+
P3(L, s);
|
|
811
817
|
}
|
|
812
|
-
return s === l ?
|
|
818
|
+
return s === l ? y1(C) : b1(C), C;
|
|
813
819
|
}
|
|
814
820
|
}
|
|
815
|
-
function y1(s, o, n) {
|
|
816
|
-
return P3(s, o, n, !0);
|
|
817
|
-
}
|
|
818
821
|
function I1(s, o, n) {
|
|
819
|
-
return
|
|
822
|
+
return D3(s, o, n, !0);
|
|
823
|
+
}
|
|
824
|
+
function R1(s, o, n) {
|
|
825
|
+
return D3(s, o, n, !1);
|
|
820
826
|
}
|
|
821
|
-
var
|
|
822
|
-
H.Fragment = l, H.jsx =
|
|
827
|
+
var E1 = R1, _1 = I1;
|
|
828
|
+
H.Fragment = l, H.jsx = E1, H.jsxs = _1;
|
|
823
829
|
}()), H;
|
|
824
830
|
}
|
|
825
831
|
var q = {};
|
|
@@ -832,121 +838,121 @@ var q = {};
|
|
|
832
838
|
* This source code is licensed under the MIT license found in the
|
|
833
839
|
* LICENSE file in the root directory of this source tree.
|
|
834
840
|
*/
|
|
835
|
-
var
|
|
836
|
-
function
|
|
837
|
-
if (
|
|
841
|
+
var $3;
|
|
842
|
+
function i2() {
|
|
843
|
+
if ($3)
|
|
838
844
|
return q;
|
|
839
|
-
|
|
840
|
-
var c =
|
|
841
|
-
function S(
|
|
842
|
-
var
|
|
843
|
-
|
|
844
|
-
for (
|
|
845
|
-
l.call(
|
|
846
|
-
if (
|
|
847
|
-
for (
|
|
848
|
-
|
|
849
|
-
return { $$typeof: r, type:
|
|
845
|
+
$3 = 1;
|
|
846
|
+
var c = H3, r = Symbol.for("react.element"), t = Symbol.for("react.fragment"), l = Object.prototype.hasOwnProperty, g = c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, m = { key: !0, ref: !0, __self: !0, __source: !0 };
|
|
847
|
+
function S(b, x, E) {
|
|
848
|
+
var j, y = {}, _ = null, B = null;
|
|
849
|
+
E !== void 0 && (_ = "" + E), x.key !== void 0 && (_ = "" + x.key), x.ref !== void 0 && (B = x.ref);
|
|
850
|
+
for (j in x)
|
|
851
|
+
l.call(x, j) && !m.hasOwnProperty(j) && (y[j] = x[j]);
|
|
852
|
+
if (b && b.defaultProps)
|
|
853
|
+
for (j in x = b.defaultProps, x)
|
|
854
|
+
y[j] === void 0 && (y[j] = x[j]);
|
|
855
|
+
return { $$typeof: r, type: b, key: _, ref: B, props: y, _owner: g.current };
|
|
850
856
|
}
|
|
851
857
|
return q.Fragment = t, q.jsx = S, q.jsxs = S, q;
|
|
852
858
|
}
|
|
853
|
-
process.env.NODE_ENV === "production" ? d3.exports =
|
|
859
|
+
process.env.NODE_ENV === "production" ? d3.exports = i2() : d3.exports = l2();
|
|
854
860
|
var e = d3.exports;
|
|
855
|
-
const
|
|
861
|
+
const a2 = () => /* @__PURE__ */ e.jsx(e.Fragment, { children: /* @__PURE__ */ e.jsxs("div", { className: "disconnected-message", children: [
|
|
856
862
|
/* @__PURE__ */ e.jsx("h1", { children: "Disconnected" }),
|
|
857
863
|
/* @__PURE__ */ e.jsx("p", { children: "Reconnecting..." })
|
|
858
864
|
] }) });
|
|
859
|
-
class
|
|
865
|
+
class v2 {
|
|
860
866
|
constructor() {
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
867
|
+
d(this, "uuid", "current-uuid");
|
|
868
|
+
d(this, "roomKey", "current-room-key");
|
|
869
|
+
d(this, "code", "current-code");
|
|
870
|
+
d(this, "expiry", "current-uuid-expires");
|
|
865
871
|
}
|
|
866
872
|
}
|
|
867
|
-
const
|
|
868
|
-
function
|
|
873
|
+
const F3 = new v2();
|
|
874
|
+
function h2(c) {
|
|
869
875
|
return sessionStorage.getItem(c) || "";
|
|
870
876
|
}
|
|
871
|
-
function
|
|
877
|
+
function d2(c, r) {
|
|
872
878
|
sessionStorage.setItem(c, r);
|
|
873
879
|
}
|
|
874
|
-
const
|
|
880
|
+
const X3 = V1({
|
|
875
881
|
sendMessage: () => null
|
|
876
882
|
});
|
|
877
|
-
function
|
|
878
|
-
return k1(
|
|
883
|
+
function u3() {
|
|
884
|
+
return k1(X3);
|
|
879
885
|
}
|
|
880
|
-
const
|
|
881
|
-
const [r, t] = r3(), l =
|
|
882
|
-
async (
|
|
883
|
-
await
|
|
884
|
-
M.status === 200 && M.data &&
|
|
886
|
+
const u2 = ({ children: c }) => {
|
|
887
|
+
const [r, t] = r3(), l = c2(), g = s2(), m = t2(), S = n2(), b = e2(), x = $1(null), [E, j] = r3(), y = V3(
|
|
888
|
+
async (B) => {
|
|
889
|
+
await h3.get(`${B}/ui/joinroom?token=${r}`).then((M) => {
|
|
890
|
+
M.status === 200 && M.data && D.dispatch(F.setRoomData(M.data));
|
|
885
891
|
}).catch((M) => {
|
|
886
892
|
console.log(M);
|
|
887
893
|
});
|
|
888
894
|
},
|
|
889
895
|
[r]
|
|
890
|
-
),
|
|
891
|
-
(
|
|
892
|
-
|
|
896
|
+
), _ = V3(
|
|
897
|
+
(B, M) => {
|
|
898
|
+
x.current && l && x.current.send(JSON.stringify({ type: B, clientId: m, content: M }));
|
|
893
899
|
},
|
|
894
|
-
[l,
|
|
900
|
+
[l, m]
|
|
895
901
|
);
|
|
896
|
-
return
|
|
902
|
+
return Y(() => {
|
|
897
903
|
let M = new URLSearchParams(window.location.search).get("token");
|
|
898
|
-
M ? (console.log("saving token: ", M),
|
|
899
|
-
}, []),
|
|
900
|
-
if (!(!
|
|
901
|
-
if (b
|
|
902
|
-
const M = `${
|
|
903
|
-
|
|
904
|
-
console.log("connected"),
|
|
905
|
-
},
|
|
906
|
-
console.log(
|
|
907
|
-
},
|
|
908
|
-
if (console.log("disconnected"),
|
|
904
|
+
M ? (console.log("saving token: ", M), d2(F3.uuid, M)) : (M = h2(F3.uuid), console.log("loading token: ", M)), t(M), S();
|
|
905
|
+
}, []), Y(() => {
|
|
906
|
+
if (!(!b.apiPath || E || !r)) {
|
|
907
|
+
if (y(b.apiPath), !x.current) {
|
|
908
|
+
const M = `${b.apiPath.replace("http", "ws")}/ui/join/${r}`, A = new WebSocket(M);
|
|
909
|
+
x.current = A, A.onopen = () => {
|
|
910
|
+
console.log("connected"), D.dispatch(F.setWebsocketIsConnected(!0));
|
|
911
|
+
}, A.onerror = (O) => {
|
|
912
|
+
console.log(O);
|
|
913
|
+
}, A.onclose = () => {
|
|
914
|
+
if (console.log("disconnected"), x.current)
|
|
909
915
|
console.log("WebSocket closed by server.");
|
|
910
916
|
else {
|
|
911
917
|
console.log("WebSocket closed by client.");
|
|
912
918
|
return;
|
|
913
919
|
}
|
|
914
|
-
|
|
915
|
-
},
|
|
920
|
+
E || (D.dispatch(F.setWebsocketIsConnected(!1)), j(!0), setTimeout(() => j(void 0), 5e3));
|
|
921
|
+
}, A.onmessage = (O) => {
|
|
916
922
|
try {
|
|
917
|
-
const
|
|
918
|
-
if (console.log(
|
|
919
|
-
switch (
|
|
923
|
+
const p = JSON.parse(O.data);
|
|
924
|
+
if (console.log(p), p.type.startsWith("/system/"))
|
|
925
|
+
switch (p.type) {
|
|
920
926
|
case "/system/roomKey":
|
|
921
|
-
|
|
927
|
+
D.dispatch(
|
|
922
928
|
F.setCurrentRoomKey(
|
|
923
|
-
|
|
929
|
+
p.content
|
|
924
930
|
)
|
|
925
931
|
);
|
|
926
932
|
break;
|
|
927
933
|
case "/system/userCodeChanged":
|
|
928
|
-
|
|
929
|
-
F.setUserCode(
|
|
934
|
+
D.dispatch(
|
|
935
|
+
F.setUserCode(p.content)
|
|
930
936
|
);
|
|
931
937
|
break;
|
|
932
938
|
}
|
|
933
939
|
else
|
|
934
|
-
|
|
935
|
-
} catch (
|
|
936
|
-
console.log(
|
|
940
|
+
p.type.startsWith("/room/") ? D.dispatch(K1.setRoomState(p)) : p.type.startsWith("/device/") && D.dispatch(q1.setDeviceState(p));
|
|
941
|
+
} catch (p) {
|
|
942
|
+
console.log(p);
|
|
937
943
|
}
|
|
938
944
|
};
|
|
939
945
|
}
|
|
940
946
|
return () => {
|
|
941
|
-
|
|
947
|
+
x.current && x.current.close(), x.current = null;
|
|
942
948
|
};
|
|
943
949
|
}
|
|
944
|
-
}, [
|
|
945
|
-
|
|
946
|
-
}, [
|
|
947
|
-
},
|
|
948
|
-
const { sendMessage: r } =
|
|
949
|
-
|
|
950
|
+
}, [b.apiPath, y, r, E]), Y(() => {
|
|
951
|
+
g && _(`/room/${g}/status`, null);
|
|
952
|
+
}, [g, _]), /* @__PURE__ */ e.jsx(X3.Provider, { value: { sendMessage: _ }, children: l ? c : /* @__PURE__ */ e.jsx(a2, {}) });
|
|
953
|
+
}, B8 = ({ children: c }) => /* @__PURE__ */ e.jsx(O1, { store: D, children: /* @__PURE__ */ e.jsx(u2, { children: c }) }), L8 = ({ config: c }) => {
|
|
954
|
+
const { sendMessage: r } = u3();
|
|
955
|
+
Y(() => {
|
|
950
956
|
if (!c)
|
|
951
957
|
return;
|
|
952
958
|
const t = [];
|
|
@@ -955,73 +961,94 @@ const d2 = ({ children: c }) => {
|
|
|
955
961
|
}), c.environmentalDevices.forEach((l) => {
|
|
956
962
|
t.push(l);
|
|
957
963
|
}), c.audioCodecKey && t.push(c.audioCodecKey), c.videoCodecKey && t.push(c.videoCodecKey);
|
|
958
|
-
for (const
|
|
959
|
-
t.push(
|
|
964
|
+
for (const l of Object.values(c.sourceList))
|
|
965
|
+
t.push(l.sourceKey);
|
|
960
966
|
t.forEach((l) => {
|
|
961
967
|
r(`/device/${l}/fullStatus`, { deviceKey: l });
|
|
962
968
|
});
|
|
963
969
|
}, [c, r]);
|
|
964
|
-
}
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
}
|
|
970
|
+
};
|
|
971
|
+
function g2(c) {
|
|
972
|
+
const { sendMessage: r } = u3();
|
|
973
|
+
return { powerOn: () => {
|
|
974
|
+
r(`/device/${c}/powerOn`, null);
|
|
975
|
+
}, powerOff: () => {
|
|
976
|
+
r(`/device/${c}/powerOff`, null);
|
|
977
|
+
}, powerToggle: () => {
|
|
978
|
+
r(`/device/${c}/powerToggle`, null);
|
|
979
|
+
} };
|
|
980
|
+
}
|
|
981
|
+
function A8(c) {
|
|
982
|
+
const { sendMessage: r } = u3();
|
|
983
|
+
return { runDirectRoute: (l) => {
|
|
984
|
+
r(`/room/${c}/directRoute`, l);
|
|
985
|
+
} };
|
|
986
|
+
}
|
|
987
|
+
function T8(c) {
|
|
988
|
+
const r = r2(c), t = g2(c);
|
|
989
|
+
return { state: r, powerControl: t };
|
|
990
|
+
}
|
|
991
|
+
const P8 = () => /* @__PURE__ */ e.jsx("div", { className: "m-2 p-2 bg-danger rounded d-flex align-items-center", children: /* @__PURE__ */ e.jsx("span", { className: "fs-5 text-white", children: "We are sorry. Something went wrong." }) }), w2 = "_iconbtn_16qss_1", x2 = "_iconbtnvert_16qss_7", f2 = "_iconsm_16qss_18", v3 = {
|
|
992
|
+
iconbtn: w2,
|
|
993
|
+
iconbtnvert: x2,
|
|
994
|
+
iconsm: f2
|
|
995
|
+
}, p2 = ({
|
|
969
996
|
multiIcon: c,
|
|
970
997
|
otherContent: r = null,
|
|
971
998
|
vert: t = !1,
|
|
972
999
|
className: l,
|
|
973
|
-
iconClassName:
|
|
974
|
-
otherContentClassName:
|
|
1000
|
+
iconClassName: g = "",
|
|
1001
|
+
otherContentClassName: m = "",
|
|
975
1002
|
disabled: S,
|
|
976
|
-
feedback:
|
|
977
|
-
feedbackClassName:
|
|
978
|
-
onPointerDown:
|
|
979
|
-
onPointerUp:
|
|
980
|
-
onPointerLeave:
|
|
981
|
-
...
|
|
1003
|
+
feedback: b,
|
|
1004
|
+
feedbackClassName: x,
|
|
1005
|
+
onPointerDown: E,
|
|
1006
|
+
onPointerUp: j,
|
|
1007
|
+
onPointerLeave: y,
|
|
1008
|
+
..._
|
|
982
1009
|
}) => {
|
|
983
|
-
const [
|
|
1010
|
+
const [B, M] = r3(!1), A = !S && b ? x : "", O = !S && (B || b);
|
|
984
1011
|
return /* @__PURE__ */ e.jsxs(
|
|
985
1012
|
"button",
|
|
986
1013
|
{
|
|
987
1014
|
type: "button",
|
|
988
|
-
className: `${
|
|
989
|
-
...
|
|
1015
|
+
className: `${v3.iconbtn} ${t ? v3.iconbtnvert : ""} ${l} ${A}`,
|
|
1016
|
+
..._,
|
|
990
1017
|
disabled: S,
|
|
991
|
-
onPointerDown: (
|
|
992
|
-
M(!0),
|
|
1018
|
+
onPointerDown: (p) => {
|
|
1019
|
+
M(!0), E == null || E(p);
|
|
993
1020
|
},
|
|
994
|
-
onPointerUp: (
|
|
995
|
-
M(!1),
|
|
1021
|
+
onPointerUp: (p) => {
|
|
1022
|
+
M(!1), j == null || j(p);
|
|
996
1023
|
},
|
|
997
|
-
onPointerLeave: (
|
|
998
|
-
M(!1),
|
|
1024
|
+
onPointerLeave: (p) => {
|
|
1025
|
+
M(!1), y == null || y(p);
|
|
999
1026
|
},
|
|
1000
1027
|
children: [
|
|
1001
1028
|
/* @__PURE__ */ e.jsx(
|
|
1002
1029
|
c,
|
|
1003
1030
|
{
|
|
1004
|
-
className: `${
|
|
1005
|
-
active:
|
|
1031
|
+
className: `${g || v3.iconsm}`,
|
|
1032
|
+
active: O,
|
|
1006
1033
|
disabled: S
|
|
1007
1034
|
}
|
|
1008
1035
|
),
|
|
1009
|
-
/* @__PURE__ */ e.jsx("div", { className:
|
|
1036
|
+
/* @__PURE__ */ e.jsx("div", { className: m, children: r })
|
|
1010
1037
|
]
|
|
1011
1038
|
}
|
|
1012
1039
|
);
|
|
1013
|
-
},
|
|
1040
|
+
}, u = ({
|
|
1014
1041
|
ActiveImage: c,
|
|
1015
1042
|
DisabledImage: r,
|
|
1016
1043
|
EnabledImage: t,
|
|
1017
1044
|
active: l,
|
|
1018
|
-
disabled:
|
|
1019
|
-
}) =>
|
|
1045
|
+
disabled: g
|
|
1046
|
+
}) => g ? r : l ? c : t, M2 = ({
|
|
1020
1047
|
active: c,
|
|
1021
1048
|
className: r = "",
|
|
1022
1049
|
disabled: t
|
|
1023
1050
|
}) => /* @__PURE__ */ e.jsx(
|
|
1024
|
-
|
|
1051
|
+
u,
|
|
1025
1052
|
{
|
|
1026
1053
|
ActiveImage: (
|
|
1027
1054
|
/* icon-mic-active.svg */
|
|
@@ -1065,12 +1092,12 @@ const d2 = ({ children: c }) => {
|
|
|
1065
1092
|
active: c,
|
|
1066
1093
|
disabled: t
|
|
1067
1094
|
}
|
|
1068
|
-
),
|
|
1095
|
+
), Z2 = ({
|
|
1069
1096
|
active: c,
|
|
1070
1097
|
className: r = "",
|
|
1071
1098
|
disabled: t
|
|
1072
1099
|
}) => /* @__PURE__ */ e.jsx(
|
|
1073
|
-
|
|
1100
|
+
u,
|
|
1074
1101
|
{
|
|
1075
1102
|
ActiveImage: /* @__PURE__ */ e.jsx(
|
|
1076
1103
|
"svg",
|
|
@@ -1117,12 +1144,12 @@ const d2 = ({ children: c }) => {
|
|
|
1117
1144
|
active: c,
|
|
1118
1145
|
disabled: t
|
|
1119
1146
|
}
|
|
1120
|
-
),
|
|
1147
|
+
), m2 = ({
|
|
1121
1148
|
active: c,
|
|
1122
1149
|
className: r = "",
|
|
1123
1150
|
disabled: t
|
|
1124
1151
|
}) => /* @__PURE__ */ e.jsx(
|
|
1125
|
-
|
|
1152
|
+
u,
|
|
1126
1153
|
{
|
|
1127
1154
|
ActiveImage: (
|
|
1128
1155
|
/* icon-ban-active.svg */
|
|
@@ -1166,12 +1193,12 @@ const d2 = ({ children: c }) => {
|
|
|
1166
1193
|
active: c,
|
|
1167
1194
|
disabled: t
|
|
1168
1195
|
}
|
|
1169
|
-
),
|
|
1196
|
+
), j2 = ({
|
|
1170
1197
|
active: c,
|
|
1171
1198
|
className: r = "",
|
|
1172
1199
|
disabled: t
|
|
1173
1200
|
}) => /* @__PURE__ */ e.jsx(
|
|
1174
|
-
|
|
1201
|
+
u,
|
|
1175
1202
|
{
|
|
1176
1203
|
ActiveImage: /* @__PURE__ */ e.jsx(
|
|
1177
1204
|
"svg",
|
|
@@ -1206,12 +1233,12 @@ const d2 = ({ children: c }) => {
|
|
|
1206
1233
|
active: c,
|
|
1207
1234
|
disabled: t
|
|
1208
1235
|
}
|
|
1209
|
-
),
|
|
1236
|
+
), C2 = ({
|
|
1210
1237
|
active: c,
|
|
1211
1238
|
className: r = "",
|
|
1212
1239
|
disabled: t
|
|
1213
1240
|
}) => /* @__PURE__ */ e.jsx(
|
|
1214
|
-
|
|
1241
|
+
u,
|
|
1215
1242
|
{
|
|
1216
1243
|
ActiveImage: (
|
|
1217
1244
|
/* icon-check-active.svg */
|
|
@@ -1255,12 +1282,12 @@ const d2 = ({ children: c }) => {
|
|
|
1255
1282
|
active: c,
|
|
1256
1283
|
disabled: t
|
|
1257
1284
|
}
|
|
1258
|
-
),
|
|
1285
|
+
), S2 = ({
|
|
1259
1286
|
active: c,
|
|
1260
1287
|
className: r = "",
|
|
1261
1288
|
disabled: t
|
|
1262
1289
|
}) => /* @__PURE__ */ e.jsx(
|
|
1263
|
-
|
|
1290
|
+
u,
|
|
1264
1291
|
{
|
|
1265
1292
|
ActiveImage: (
|
|
1266
1293
|
/* icon-down-active.svg */
|
|
@@ -1304,12 +1331,12 @@ const d2 = ({ children: c }) => {
|
|
|
1304
1331
|
active: c,
|
|
1305
1332
|
disabled: t
|
|
1306
1333
|
}
|
|
1307
|
-
),
|
|
1334
|
+
), b2 = ({
|
|
1308
1335
|
active: c,
|
|
1309
1336
|
className: r = "",
|
|
1310
1337
|
disabled: t
|
|
1311
1338
|
}) => /* @__PURE__ */ e.jsx(
|
|
1312
|
-
|
|
1339
|
+
u,
|
|
1313
1340
|
{
|
|
1314
1341
|
ActiveImage: (
|
|
1315
1342
|
/* icon-elipses-active.svg */
|
|
@@ -1353,12 +1380,12 @@ const d2 = ({ children: c }) => {
|
|
|
1353
1380
|
active: c,
|
|
1354
1381
|
disabled: t
|
|
1355
1382
|
}
|
|
1356
|
-
),
|
|
1383
|
+
), y2 = ({
|
|
1357
1384
|
active: c,
|
|
1358
1385
|
className: r = "",
|
|
1359
1386
|
disabled: t
|
|
1360
1387
|
}) => /* @__PURE__ */ e.jsx(
|
|
1361
|
-
|
|
1388
|
+
u,
|
|
1362
1389
|
{
|
|
1363
1390
|
ActiveImage: (
|
|
1364
1391
|
/* icon-flag-active.svg */
|
|
@@ -1402,12 +1429,12 @@ const d2 = ({ children: c }) => {
|
|
|
1402
1429
|
active: c,
|
|
1403
1430
|
disabled: t
|
|
1404
1431
|
}
|
|
1405
|
-
),
|
|
1432
|
+
), I2 = ({
|
|
1406
1433
|
active: c,
|
|
1407
1434
|
className: r = "",
|
|
1408
1435
|
disabled: t
|
|
1409
1436
|
}) => /* @__PURE__ */ e.jsx(
|
|
1410
|
-
|
|
1437
|
+
u,
|
|
1411
1438
|
{
|
|
1412
1439
|
ActiveImage: (
|
|
1413
1440
|
/* /Users/hvolmer/Downloads/SVG/icon-gear-active.svg */
|
|
@@ -1451,12 +1478,12 @@ const d2 = ({ children: c }) => {
|
|
|
1451
1478
|
active: c,
|
|
1452
1479
|
disabled: t
|
|
1453
1480
|
}
|
|
1454
|
-
),
|
|
1481
|
+
), R2 = ({
|
|
1455
1482
|
active: c,
|
|
1456
1483
|
className: r = "",
|
|
1457
1484
|
disabled: t
|
|
1458
1485
|
}) => /* @__PURE__ */ e.jsx(
|
|
1459
|
-
|
|
1486
|
+
u,
|
|
1460
1487
|
{
|
|
1461
1488
|
ActiveImage: (
|
|
1462
1489
|
/* icon-glass-active.svg */
|
|
@@ -1500,14 +1527,14 @@ const d2 = ({ children: c }) => {
|
|
|
1500
1527
|
active: c,
|
|
1501
1528
|
disabled: t
|
|
1502
1529
|
}
|
|
1503
|
-
),
|
|
1530
|
+
), E2 = ({
|
|
1504
1531
|
active: c,
|
|
1505
1532
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
1506
1533
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1507
1534
|
className: r = "",
|
|
1508
1535
|
disabled: t
|
|
1509
1536
|
}) => /* @__PURE__ */ e.jsx(
|
|
1510
|
-
|
|
1537
|
+
u,
|
|
1511
1538
|
{
|
|
1512
1539
|
ActiveImage: (
|
|
1513
1540
|
/* icon-hdmi-active.svg */
|
|
@@ -1522,7 +1549,7 @@ const d2 = ({ children: c }) => {
|
|
|
1522
1549
|
"path",
|
|
1523
1550
|
{
|
|
1524
1551
|
d: "M71.55,55.43h-10.75v-16.12h43v16.12h-10.75v-10.75h-5.37v10.75h-10.75v-10.75h-5.37v10.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.3ZM119.93,55.43h-5.37v-16.12c0-2.96-1.05-5.49-3.16-7.59-2.11-2.11-4.64-3.16-7.59-3.16h-43c-2.96,0-5.49,1.05-7.59,3.16s-3.16,4.64-3.16,7.59v16.12h-5.38v32.25l16.12,32.25v16.12h43v-16.12l16.12-32.25v-32.25ZM55.43,84.99l16.12,32.25v8.06h21.5v-8.06l16.12-32.25v-18.81h-53.75v18.81Z",
|
|
1525
|
-
|
|
1552
|
+
strokeWidth: "0"
|
|
1526
1553
|
}
|
|
1527
1554
|
) })
|
|
1528
1555
|
}
|
|
@@ -1541,7 +1568,7 @@ const d2 = ({ children: c }) => {
|
|
|
1541
1568
|
"path",
|
|
1542
1569
|
{
|
|
1543
1570
|
d: "M49.27,96.86l-4.59-9.18v-32.25h5.37v-16.12c0-2.96,1.05-5.49,3.16-7.59,2.11-2.11,4.64-3.16,7.59-3.16h43c2.96,0,5.49,1.05,7.59,3.16.52.52.98,1.07,1.37,1.64l-8.96,8.96v-3.02h-43v16.12h10.75v-10.75h5.37v10.75h10.75v-10.75h5.37v8.39l-13.11,13.11h-24.52v18.81l1.9,3.8-8.06,8.06ZM109.18,73.91v11.08l-16.12,32.25v8.06h-21.5v-8.06l-1.9-3.8-8.85,8.85v13.77h43v-16.12l16.12-32.25v-24.52l-10.75,10.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.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",
|
|
1544
|
-
|
|
1571
|
+
strokeWidth: "0"
|
|
1545
1572
|
}
|
|
1546
1573
|
) })
|
|
1547
1574
|
}
|
|
@@ -1560,7 +1587,7 @@ const d2 = ({ children: c }) => {
|
|
|
1560
1587
|
"path",
|
|
1561
1588
|
{
|
|
1562
1589
|
d: "M60.8,136.05v-16.12l-16.12-32.25v-32.25h5.37v-16.12c0-2.96,1.05-5.49,3.16-7.59,2.11-2.11,4.64-3.16,7.59-3.16h43c2.96,0,5.49,1.05,7.59,3.16s3.16,4.64,3.16,7.59v16.12h5.37v32.25l-16.12,32.25v16.12h-43ZM60.8,55.43h10.75v-10.75h5.37v10.75h10.75v-10.75h5.37v10.75h10.75v-16.12h-43v16.12ZM71.55,125.3h21.5v-8.06l16.12-32.25v-18.81h-53.75v18.81l16.12,32.25v8.06ZM82.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",
|
|
1563
|
-
|
|
1590
|
+
strokeWidth: "0"
|
|
1564
1591
|
}
|
|
1565
1592
|
) })
|
|
1566
1593
|
}
|
|
@@ -1569,12 +1596,12 @@ const d2 = ({ children: c }) => {
|
|
|
1569
1596
|
active: c,
|
|
1570
1597
|
disabled: t
|
|
1571
1598
|
}
|
|
1572
|
-
),
|
|
1599
|
+
), _2 = ({
|
|
1573
1600
|
active: c,
|
|
1574
1601
|
className: r = "",
|
|
1575
1602
|
disabled: t
|
|
1576
1603
|
}) => /* @__PURE__ */ e.jsx(
|
|
1577
|
-
|
|
1604
|
+
u,
|
|
1578
1605
|
{
|
|
1579
1606
|
ActiveImage: (
|
|
1580
1607
|
/* icon-laptop-active.svg */
|
|
@@ -1618,12 +1645,12 @@ const d2 = ({ children: c }) => {
|
|
|
1618
1645
|
active: c,
|
|
1619
1646
|
disabled: t
|
|
1620
1647
|
}
|
|
1621
|
-
),
|
|
1648
|
+
), B2 = ({
|
|
1622
1649
|
active: c,
|
|
1623
1650
|
className: r = "",
|
|
1624
1651
|
disabled: t
|
|
1625
1652
|
}) => /* @__PURE__ */ e.jsx(
|
|
1626
|
-
|
|
1653
|
+
u,
|
|
1627
1654
|
{
|
|
1628
1655
|
ActiveImage: (
|
|
1629
1656
|
/* icon-left-active.svg */
|
|
@@ -1667,12 +1694,12 @@ const d2 = ({ children: c }) => {
|
|
|
1667
1694
|
active: c,
|
|
1668
1695
|
disabled: t
|
|
1669
1696
|
}
|
|
1670
|
-
),
|
|
1697
|
+
), L2 = ({
|
|
1671
1698
|
active: c,
|
|
1672
1699
|
className: r = "",
|
|
1673
1700
|
disabled: t
|
|
1674
1701
|
}) => /* @__PURE__ */ e.jsx(
|
|
1675
|
-
|
|
1702
|
+
u,
|
|
1676
1703
|
{
|
|
1677
1704
|
ActiveImage: (
|
|
1678
1705
|
/* icon-light-active.svg */
|
|
@@ -1716,12 +1743,12 @@ const d2 = ({ children: c }) => {
|
|
|
1716
1743
|
active: c,
|
|
1717
1744
|
disabled: t
|
|
1718
1745
|
}
|
|
1719
|
-
),
|
|
1746
|
+
), A2 = ({
|
|
1720
1747
|
active: c,
|
|
1721
1748
|
className: r = "",
|
|
1722
1749
|
disabled: t
|
|
1723
1750
|
}) => /* @__PURE__ */ e.jsx(
|
|
1724
|
-
|
|
1751
|
+
u,
|
|
1725
1752
|
{
|
|
1726
1753
|
ActiveImage: (
|
|
1727
1754
|
/* icon-moon-active.svg */
|
|
@@ -1765,12 +1792,12 @@ const d2 = ({ children: c }) => {
|
|
|
1765
1792
|
active: c,
|
|
1766
1793
|
disabled: t
|
|
1767
1794
|
}
|
|
1768
|
-
),
|
|
1795
|
+
), T2 = ({
|
|
1769
1796
|
active: c,
|
|
1770
1797
|
className: r = "",
|
|
1771
1798
|
disabled: t
|
|
1772
1799
|
}) => /* @__PURE__ */ e.jsx(
|
|
1773
|
-
|
|
1800
|
+
u,
|
|
1774
1801
|
{
|
|
1775
1802
|
ActiveImage: (
|
|
1776
1803
|
/* icon-playstation-active.svg */
|
|
@@ -1787,12 +1814,12 @@ const d2 = ({ children: c }) => {
|
|
|
1787
1814
|
active: c,
|
|
1788
1815
|
disabled: t
|
|
1789
1816
|
}
|
|
1790
|
-
),
|
|
1817
|
+
), P2 = ({
|
|
1791
1818
|
active: c,
|
|
1792
1819
|
className: r = "",
|
|
1793
1820
|
disabled: t
|
|
1794
1821
|
}) => /* @__PURE__ */ e.jsx(
|
|
1795
|
-
|
|
1822
|
+
u,
|
|
1796
1823
|
{
|
|
1797
1824
|
ActiveImage: (
|
|
1798
1825
|
/* icon-podium-active.svg */
|
|
@@ -1836,12 +1863,12 @@ const d2 = ({ children: c }) => {
|
|
|
1836
1863
|
active: c,
|
|
1837
1864
|
disabled: t
|
|
1838
1865
|
}
|
|
1839
|
-
),
|
|
1866
|
+
), D2 = ({
|
|
1840
1867
|
active: c,
|
|
1841
1868
|
className: r = "",
|
|
1842
1869
|
disabled: t
|
|
1843
1870
|
}) => /* @__PURE__ */ e.jsx(
|
|
1844
|
-
|
|
1871
|
+
u,
|
|
1845
1872
|
{
|
|
1846
1873
|
ActiveImage: (
|
|
1847
1874
|
/* icon-power-active.svg */
|
|
@@ -1885,12 +1912,12 @@ const d2 = ({ children: c }) => {
|
|
|
1885
1912
|
active: c,
|
|
1886
1913
|
disabled: t
|
|
1887
1914
|
}
|
|
1888
|
-
),
|
|
1915
|
+
), O2 = ({
|
|
1889
1916
|
active: c,
|
|
1890
1917
|
className: r = "",
|
|
1891
1918
|
disabled: t
|
|
1892
1919
|
}) => /* @__PURE__ */ e.jsx(
|
|
1893
|
-
|
|
1920
|
+
u,
|
|
1894
1921
|
{
|
|
1895
1922
|
ActiveImage: (
|
|
1896
1923
|
/* icon-privacy-active.svg */
|
|
@@ -1934,12 +1961,12 @@ const d2 = ({ children: c }) => {
|
|
|
1934
1961
|
active: c,
|
|
1935
1962
|
disabled: t
|
|
1936
1963
|
}
|
|
1937
|
-
),
|
|
1964
|
+
), V2 = ({
|
|
1938
1965
|
active: c,
|
|
1939
1966
|
className: r = "",
|
|
1940
1967
|
disabled: t
|
|
1941
1968
|
}) => /* @__PURE__ */ e.jsx(
|
|
1942
|
-
|
|
1969
|
+
u,
|
|
1943
1970
|
{
|
|
1944
1971
|
ActiveImage: (
|
|
1945
1972
|
/* icon-question-active.svg */
|
|
@@ -1983,12 +2010,12 @@ const d2 = ({ children: c }) => {
|
|
|
1983
2010
|
active: c,
|
|
1984
2011
|
disabled: t
|
|
1985
2012
|
}
|
|
1986
|
-
),
|
|
2013
|
+
), k2 = ({
|
|
1987
2014
|
active: c,
|
|
1988
2015
|
className: r = "",
|
|
1989
2016
|
disabled: t
|
|
1990
2017
|
}) => /* @__PURE__ */ e.jsx(
|
|
1991
|
-
|
|
2018
|
+
u,
|
|
1992
2019
|
{
|
|
1993
2020
|
ActiveImage: (
|
|
1994
2021
|
/* icon-right-active.svg */
|
|
@@ -2032,12 +2059,12 @@ const d2 = ({ children: c }) => {
|
|
|
2032
2059
|
active: c,
|
|
2033
2060
|
disabled: t
|
|
2034
2061
|
}
|
|
2035
|
-
),
|
|
2062
|
+
), $2 = ({
|
|
2036
2063
|
active: c,
|
|
2037
2064
|
className: r = "",
|
|
2038
2065
|
disabled: t
|
|
2039
2066
|
}) => /* @__PURE__ */ e.jsx(
|
|
2040
|
-
|
|
2067
|
+
u,
|
|
2041
2068
|
{
|
|
2042
2069
|
ActiveImage: (
|
|
2043
2070
|
/* icon-shade-active.svg */
|
|
@@ -2081,12 +2108,12 @@ const d2 = ({ children: c }) => {
|
|
|
2081
2108
|
active: c,
|
|
2082
2109
|
disabled: t
|
|
2083
2110
|
}
|
|
2084
|
-
),
|
|
2111
|
+
), F2 = ({
|
|
2085
2112
|
active: c,
|
|
2086
2113
|
className: r = "",
|
|
2087
2114
|
disabled: t
|
|
2088
2115
|
}) => /* @__PURE__ */ e.jsx(
|
|
2089
|
-
|
|
2116
|
+
u,
|
|
2090
2117
|
{
|
|
2091
2118
|
ActiveImage: (
|
|
2092
2119
|
/* icon-sun-active.svg */
|
|
@@ -2130,12 +2157,12 @@ const d2 = ({ children: c }) => {
|
|
|
2130
2157
|
active: c,
|
|
2131
2158
|
disabled: t
|
|
2132
2159
|
}
|
|
2133
|
-
),
|
|
2160
|
+
), W2 = ({
|
|
2134
2161
|
active: c,
|
|
2135
2162
|
className: r = "",
|
|
2136
2163
|
disabled: t
|
|
2137
2164
|
}) => /* @__PURE__ */ e.jsx(
|
|
2138
|
-
|
|
2165
|
+
u,
|
|
2139
2166
|
{
|
|
2140
2167
|
ActiveImage: (
|
|
2141
2168
|
/* icon-up-active.svg */
|
|
@@ -2179,12 +2206,12 @@ const d2 = ({ children: c }) => {
|
|
|
2179
2206
|
active: c,
|
|
2180
2207
|
disabled: t
|
|
2181
2208
|
}
|
|
2182
|
-
),
|
|
2209
|
+
), U2 = ({
|
|
2183
2210
|
active: c,
|
|
2184
2211
|
className: r = "",
|
|
2185
2212
|
disabled: t
|
|
2186
2213
|
}) => /* @__PURE__ */ e.jsx(
|
|
2187
|
-
|
|
2214
|
+
u,
|
|
2188
2215
|
{
|
|
2189
2216
|
ActiveImage: (
|
|
2190
2217
|
/* icon-volDown-active.svg */
|
|
@@ -2228,12 +2255,12 @@ const d2 = ({ children: c }) => {
|
|
|
2228
2255
|
active: c,
|
|
2229
2256
|
disabled: t
|
|
2230
2257
|
}
|
|
2231
|
-
),
|
|
2258
|
+
), H2 = ({
|
|
2232
2259
|
active: c,
|
|
2233
2260
|
className: r = "",
|
|
2234
2261
|
disabled: t
|
|
2235
2262
|
}) => /* @__PURE__ */ e.jsx(
|
|
2236
|
-
|
|
2263
|
+
u,
|
|
2237
2264
|
{
|
|
2238
2265
|
ActiveImage: (
|
|
2239
2266
|
/* icon-volMute-active.svg */
|
|
@@ -2277,12 +2304,12 @@ const d2 = ({ children: c }) => {
|
|
|
2277
2304
|
active: c,
|
|
2278
2305
|
disabled: t
|
|
2279
2306
|
}
|
|
2280
|
-
),
|
|
2307
|
+
), q2 = ({
|
|
2281
2308
|
active: c,
|
|
2282
2309
|
className: r = "",
|
|
2283
2310
|
disabled: t
|
|
2284
2311
|
}) => /* @__PURE__ */ e.jsx(
|
|
2285
|
-
|
|
2312
|
+
u,
|
|
2286
2313
|
{
|
|
2287
2314
|
ActiveImage: (
|
|
2288
2315
|
/* icon-volUp-active.svg */
|
|
@@ -2326,12 +2353,12 @@ const d2 = ({ children: c }) => {
|
|
|
2326
2353
|
active: c,
|
|
2327
2354
|
disabled: t
|
|
2328
2355
|
}
|
|
2329
|
-
),
|
|
2356
|
+
), G2 = ({
|
|
2330
2357
|
active: c,
|
|
2331
2358
|
className: r = "",
|
|
2332
2359
|
disabled: t
|
|
2333
2360
|
}) => /* @__PURE__ */ e.jsx(
|
|
2334
|
-
|
|
2361
|
+
u,
|
|
2335
2362
|
{
|
|
2336
2363
|
ActiveImage: (
|
|
2337
2364
|
/* icon-wireless-active.svg */
|
|
@@ -2375,12 +2402,12 @@ const d2 = ({ children: c }) => {
|
|
|
2375
2402
|
active: c,
|
|
2376
2403
|
disabled: t
|
|
2377
2404
|
}
|
|
2378
|
-
),
|
|
2405
|
+
), Y2 = ({
|
|
2379
2406
|
active: c,
|
|
2380
2407
|
className: r = "",
|
|
2381
2408
|
disabled: t
|
|
2382
2409
|
}) => /* @__PURE__ */ e.jsx(
|
|
2383
|
-
|
|
2410
|
+
u,
|
|
2384
2411
|
{
|
|
2385
2412
|
ActiveImage: (
|
|
2386
2413
|
/* icon-x-active.svg */
|
|
@@ -2424,12 +2451,12 @@ const d2 = ({ children: c }) => {
|
|
|
2424
2451
|
active: c,
|
|
2425
2452
|
disabled: t
|
|
2426
2453
|
}
|
|
2427
|
-
),
|
|
2454
|
+
), K2 = ({
|
|
2428
2455
|
active: c,
|
|
2429
2456
|
className: r = "",
|
|
2430
2457
|
disabled: t
|
|
2431
2458
|
}) => /* @__PURE__ */ e.jsx(
|
|
2432
|
-
|
|
2459
|
+
u,
|
|
2433
2460
|
{
|
|
2434
2461
|
ActiveImage: (
|
|
2435
2462
|
/* icon-xbox-active.svg */
|
|
@@ -2473,79 +2500,118 @@ const d2 = ({ children: c }) => {
|
|
|
2473
2500
|
active: c,
|
|
2474
2501
|
disabled: t
|
|
2475
2502
|
}
|
|
2476
|
-
),
|
|
2477
|
-
Alert:
|
|
2478
|
-
Camera:
|
|
2479
|
-
DownArrow:
|
|
2480
|
-
Ban:
|
|
2481
|
-
Check:
|
|
2482
|
-
Elipses:
|
|
2483
|
-
Flag:
|
|
2484
|
-
Gear:
|
|
2485
|
-
Glass:
|
|
2486
|
-
Hdmi:
|
|
2487
|
-
Laptop:
|
|
2488
|
-
LeftArrow:
|
|
2489
|
-
Light:
|
|
2490
|
-
Mic:
|
|
2491
|
-
Moon:
|
|
2492
|
-
Playstation:
|
|
2493
|
-
Podium:
|
|
2494
|
-
Power:
|
|
2495
|
-
Privacy:
|
|
2496
|
-
Question:
|
|
2497
|
-
RightArrow:
|
|
2498
|
-
Shade:
|
|
2499
|
-
Sun:
|
|
2500
|
-
UpArrow:
|
|
2501
|
-
VolDown:
|
|
2502
|
-
VolMute:
|
|
2503
|
-
VolUp:
|
|
2504
|
-
Wireless:
|
|
2505
|
-
X:
|
|
2506
|
-
Xbox:
|
|
2503
|
+
), J2 = {
|
|
2504
|
+
Alert: Z2,
|
|
2505
|
+
Camera: j2,
|
|
2506
|
+
DownArrow: S2,
|
|
2507
|
+
Ban: m2,
|
|
2508
|
+
Check: C2,
|
|
2509
|
+
Elipses: b2,
|
|
2510
|
+
Flag: y2,
|
|
2511
|
+
Gear: I2,
|
|
2512
|
+
Glass: R2,
|
|
2513
|
+
Hdmi: E2,
|
|
2514
|
+
Laptop: _2,
|
|
2515
|
+
LeftArrow: B2,
|
|
2516
|
+
Light: L2,
|
|
2517
|
+
Mic: M2,
|
|
2518
|
+
Moon: A2,
|
|
2519
|
+
Playstation: T2,
|
|
2520
|
+
Podium: P2,
|
|
2521
|
+
Power: D2,
|
|
2522
|
+
Privacy: O2,
|
|
2523
|
+
Question: V2,
|
|
2524
|
+
RightArrow: k2,
|
|
2525
|
+
Shade: $2,
|
|
2526
|
+
Sun: F2,
|
|
2527
|
+
UpArrow: W2,
|
|
2528
|
+
VolDown: U2,
|
|
2529
|
+
VolMute: H2,
|
|
2530
|
+
VolUp: q2,
|
|
2531
|
+
Wireless: G2,
|
|
2532
|
+
X: Y2,
|
|
2533
|
+
Xbox: K2
|
|
2507
2534
|
};
|
|
2508
|
-
function
|
|
2535
|
+
function D8({
|
|
2509
2536
|
name: c,
|
|
2510
2537
|
...r
|
|
2511
2538
|
}) {
|
|
2512
|
-
return /* @__PURE__ */ e.jsx(
|
|
2539
|
+
return /* @__PURE__ */ e.jsx(p2, { multiIcon: J2[c], ...r });
|
|
2513
2540
|
}
|
|
2514
|
-
const
|
|
2515
|
-
grid:
|
|
2516
|
-
header:
|
|
2517
|
-
content:
|
|
2518
|
-
footer:
|
|
2519
|
-
volume:
|
|
2520
|
-
},
|
|
2521
|
-
/* @__PURE__ */ e.jsx("div", { className:
|
|
2522
|
-
/* @__PURE__ */ e.jsx("div", { className:
|
|
2523
|
-
|
|
2524
|
-
/* @__PURE__ */ e.jsx("div", { className:
|
|
2525
|
-
] }),
|
|
2526
|
-
grid:
|
|
2527
|
-
header:
|
|
2528
|
-
content:
|
|
2541
|
+
const z2 = "_grid_1cmpp_1", X2 = "_header_1cmpp_11", Q2 = "_content_1cmpp_17", N2 = "_footer_1cmpp_23", e8 = "_volume_1cmpp_29", G = {
|
|
2542
|
+
grid: z2,
|
|
2543
|
+
header: X2,
|
|
2544
|
+
content: Q2,
|
|
2545
|
+
footer: N2,
|
|
2546
|
+
volume: e8
|
|
2547
|
+
}, O8 = ({ header: c, footer: r, content: t, volume: l, showVolume: g }) => /* @__PURE__ */ e.jsxs("div", { className: G.grid, children: [
|
|
2548
|
+
/* @__PURE__ */ e.jsx("div", { className: G.header, children: c }),
|
|
2549
|
+
/* @__PURE__ */ e.jsx("div", { className: G.content, children: t }),
|
|
2550
|
+
g && /* @__PURE__ */ e.jsx("div", { className: G.volume, children: l }),
|
|
2551
|
+
/* @__PURE__ */ e.jsx("div", { className: G.footer, children: r })
|
|
2552
|
+
] }), r8 = "_grid_11w5q_1", c8 = "_header_11w5q_11", s8 = "_content_11w5q_17", e3 = {
|
|
2553
|
+
grid: r8,
|
|
2554
|
+
header: c8,
|
|
2555
|
+
content: s8,
|
|
2529
2556
|
"left-nav": "_left-nav_11w5q_23"
|
|
2530
|
-
},
|
|
2557
|
+
}, V8 = ({ className: c, header: r, content: t, leftNav: l }) => /* @__PURE__ */ e.jsxs("div", { className: `${c} ${e3.grid}`, children: [
|
|
2531
2558
|
/* @__PURE__ */ e.jsx("div", { className: e3.header, children: r }),
|
|
2532
2559
|
/* @__PURE__ */ e.jsx("div", { className: e3.leftNav, children: l }),
|
|
2533
2560
|
/* @__PURE__ */ e.jsx("div", { className: e3.content, children: t })
|
|
2534
2561
|
] });
|
|
2535
|
-
function
|
|
2562
|
+
function k8() {
|
|
2536
2563
|
return console.log(location.pathname), location.pathname;
|
|
2537
2564
|
}
|
|
2538
|
-
var
|
|
2539
|
-
class
|
|
2565
|
+
var t8 = /* @__PURE__ */ ((c) => (c[c.NotSet = 0] = "NotSet", c[c.Sunday = 1] = "Sunday", c[c.Monday = 2] = "Monday", c[c.Tuesday = 4] = "Tuesday", c[c.Wednesday = 8] = "Wednesday", c[c.Thursday = 16] = "Thursday", c[c.Friday = 32] = "Friday", c[c.Saturday = 64] = "Saturday", c))(t8 || {});
|
|
2566
|
+
class $8 {
|
|
2540
2567
|
constructor(r, t) {
|
|
2541
|
-
|
|
2542
|
-
|
|
2568
|
+
d(this, "path");
|
|
2569
|
+
d(this, "handler");
|
|
2543
2570
|
this.path = r, this.handler = t;
|
|
2544
2571
|
}
|
|
2545
2572
|
}
|
|
2546
|
-
|
|
2573
|
+
class F8 {
|
|
2574
|
+
constructor() {
|
|
2575
|
+
d(this, "name", "");
|
|
2576
|
+
d(this, "iconUrl", "");
|
|
2577
|
+
d(this, "channel", "");
|
|
2578
|
+
}
|
|
2579
|
+
}
|
|
2580
|
+
class W8 {
|
|
2581
|
+
constructor() {
|
|
2582
|
+
d(this, "audioCodecKey");
|
|
2583
|
+
d(this, "defaultDisplayKey");
|
|
2584
|
+
d(this, "defaultPresentationSourceKey", "");
|
|
2585
|
+
d(this, "displayKeys", []);
|
|
2586
|
+
d(this, "environmentalDevices", []);
|
|
2587
|
+
d(this, "hasAudioConferencing");
|
|
2588
|
+
d(this, "hasEnvironmentalControls");
|
|
2589
|
+
d(this, "hasVideoConferencing");
|
|
2590
|
+
d(this, "helpMessage");
|
|
2591
|
+
d(this, "sourceList", {});
|
|
2592
|
+
d(this, "supportsAdvancedSharing");
|
|
2593
|
+
d(this, "uiBehavior");
|
|
2594
|
+
d(this, "userCanChangeShareMode");
|
|
2595
|
+
d(this, "videoCodecIsZoomRoom");
|
|
2596
|
+
d(this, "videoCodecKey");
|
|
2597
|
+
}
|
|
2598
|
+
}
|
|
2599
|
+
class U8 {
|
|
2600
|
+
constructor() {
|
|
2601
|
+
d(this, "deviceKey");
|
|
2602
|
+
d(this, "deviceType");
|
|
2603
|
+
}
|
|
2604
|
+
}
|
|
2605
|
+
class H8 {
|
|
2606
|
+
constructor() {
|
|
2607
|
+
d(this, "currentShareText");
|
|
2608
|
+
d(this, "enabled");
|
|
2609
|
+
d(this, "isSharing");
|
|
2610
|
+
}
|
|
2611
|
+
}
|
|
2612
|
+
const q8 = ({ className: c }) => {
|
|
2547
2613
|
const [r, t] = r3();
|
|
2548
|
-
return
|
|
2614
|
+
return Y(() => {
|
|
2549
2615
|
setInterval(() => {
|
|
2550
2616
|
const l = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
|
|
2551
2617
|
t(l);
|
|
@@ -2556,75 +2622,83 @@ const O8 = ({ className: c }) => {
|
|
|
2556
2622
|
] });
|
|
2557
2623
|
};
|
|
2558
2624
|
export {
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
k2 as
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
Y2 as
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2625
|
+
q8 as Clock,
|
|
2626
|
+
t8 as DaysOfWeek,
|
|
2627
|
+
U8 as EnvironmentalDeviceConfiguration,
|
|
2628
|
+
P8 as ErrorBox,
|
|
2629
|
+
p2 as IconButton,
|
|
2630
|
+
Z2 as IconMultiAlert,
|
|
2631
|
+
m2 as IconMultiBan,
|
|
2632
|
+
j2 as IconMultiCamera,
|
|
2633
|
+
C2 as IconMultiCheck,
|
|
2634
|
+
S2 as IconMultiDownArrow,
|
|
2635
|
+
b2 as IconMultiElipses,
|
|
2636
|
+
y2 as IconMultiFlag,
|
|
2637
|
+
I2 as IconMultiGear,
|
|
2638
|
+
R2 as IconMultiGlass,
|
|
2639
|
+
E2 as IconMultiHdmi,
|
|
2640
|
+
_2 as IconMultiLaptop,
|
|
2641
|
+
B2 as IconMultiLeftArrow,
|
|
2642
|
+
L2 as IconMultiLight,
|
|
2643
|
+
A2 as IconMultiMoon,
|
|
2644
|
+
T2 as IconMultiPlaystation,
|
|
2645
|
+
P2 as IconMultiPodium,
|
|
2646
|
+
D2 as IconMultiPower,
|
|
2647
|
+
O2 as IconMultiPrivacy,
|
|
2648
|
+
V2 as IconMultiQuestion,
|
|
2649
|
+
k2 as IconMultiRightArrow,
|
|
2650
|
+
$2 as IconMultiShade,
|
|
2651
|
+
F2 as IconMultiSun,
|
|
2652
|
+
W2 as IconMultiUpArrow,
|
|
2653
|
+
U2 as IconMultiVolDown,
|
|
2654
|
+
H2 as IconMultiVolMute,
|
|
2655
|
+
q2 as IconMultiVolUp,
|
|
2656
|
+
G2 as IconMultiWireless,
|
|
2657
|
+
Y2 as IconMultiX,
|
|
2658
|
+
K2 as IconMultiXbox,
|
|
2659
|
+
O8 as MainLayout,
|
|
2660
|
+
$8 as MessageHandler,
|
|
2661
|
+
B8 as MobileControlProvider,
|
|
2662
|
+
u as MultiStateIconContainer,
|
|
2663
|
+
D8 as NamedIconButton,
|
|
2664
|
+
F8 as PresetChannel,
|
|
2665
|
+
W8 as RoomConfiguration,
|
|
2666
|
+
H8 as ShareState,
|
|
2667
|
+
V8 as TechLayout,
|
|
2668
|
+
k8 as getBaseLocation,
|
|
2669
|
+
h3 as httpClient,
|
|
2670
|
+
D as store,
|
|
2671
|
+
v8 as uiActions,
|
|
2672
|
+
N1 as uiReducer,
|
|
2673
|
+
h8 as useApiPath,
|
|
2674
|
+
e2 as useAppConfig,
|
|
2675
|
+
o2 as useAppDispatch,
|
|
2676
|
+
t2 as useClientId,
|
|
2677
|
+
L8 as useGetAllDeviceStateFromRoomConfiguration,
|
|
2678
|
+
d8 as useGetAllDevices,
|
|
2679
|
+
E8 as useGetCurrentPopoverIdForGroup,
|
|
2680
|
+
r2 as useGetDevice,
|
|
2681
|
+
b8 as useGetRoomDisplays,
|
|
2682
|
+
g2 as useIHasPowerControl,
|
|
2683
|
+
A8 as useIRunDirectRouteAction,
|
|
2684
|
+
n2 as useInitialize,
|
|
2685
|
+
C8 as useRoomAdvancedSharingActive,
|
|
2686
|
+
u8 as useRoomConfiguration,
|
|
2687
|
+
p8 as useRoomDestinationKeys,
|
|
2615
2688
|
M8 as useRoomInCall,
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2689
|
+
m8 as useRoomIsCoolingDown,
|
|
2690
|
+
j8 as useRoomIsOn,
|
|
2691
|
+
Z8 as useRoomIsWarmingUp,
|
|
2692
|
+
s2 as useRoomKey,
|
|
2693
|
+
x8 as useRoomMasterVolume,
|
|
2694
|
+
w8 as useRoomName,
|
|
2695
|
+
S8 as useRoomShareState,
|
|
2696
|
+
f8 as useRoomSourceList,
|
|
2697
|
+
g8 as useRoomState,
|
|
2698
|
+
I8 as useShowIncomingCallModal,
|
|
2699
|
+
R8 as useShowModal,
|
|
2700
|
+
_8 as useShowPopoverById,
|
|
2701
|
+
y8 as useShowShutdownModal,
|
|
2702
|
+
T8 as useTwoWayDisplayBase,
|
|
2703
|
+
c2 as useWsIsConnected
|
|
2630
2704
|
};
|