@pepperdash/mobile-control-react-app-core 1.1.0 → 1.2.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 +653 -580
- package/dist/mobile-control-react-app-core.umd.js +10 -10
- package/dist/services/apiService.d.ts.map +1 -1
- package/dist/shared/Icons/MultiStateIcons/IconMultiHdmi.d.ts +3 -0
- package/dist/shared/Icons/MultiStateIcons/IconMultiHdmi.d.ts.map +1 -0
- package/dist/shared/Icons/MultiStateIcons/index.d.ts +1 -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,11 +1,11 @@
|
|
|
1
1
|
var _1 = Object.defineProperty;
|
|
2
|
-
var B1 = (
|
|
3
|
-
var
|
|
2
|
+
var B1 = (c, r, t) => r in c ? _1(c, r, { enumerable: !0, configurable: !0, writable: !0, value: t }) : c[r] = t;
|
|
3
|
+
var k = (c, r, t) => (B1(c, typeof r != "symbol" ? r + "" : r, t), t);
|
|
4
4
|
import L1 from "axios";
|
|
5
5
|
import { createSlice as K, combineReducers as A1, configureStore as F3 } from "@reduxjs/toolkit";
|
|
6
6
|
import { useSelector as T1, useDispatch as P1, Provider as D1 } from "react-redux";
|
|
7
7
|
import * as W3 from "lodash";
|
|
8
|
-
import U3, { createContext as O1, useContext as
|
|
8
|
+
import U3, { createContext as O1, useContext as k1, useState as r3, useRef as V1, useCallback as O3, useEffect as G } from "react";
|
|
9
9
|
const $1 = {
|
|
10
10
|
config: {
|
|
11
11
|
enableDev: !1,
|
|
@@ -16,45 +16,45 @@ const $1 = {
|
|
|
16
16
|
loginMode: "",
|
|
17
17
|
modes: {}
|
|
18
18
|
}
|
|
19
|
-
},
|
|
19
|
+
}, H3 = K({
|
|
20
20
|
name: "appConfig",
|
|
21
21
|
initialState: $1,
|
|
22
22
|
reducers: {
|
|
23
|
-
setAppConfig(
|
|
24
|
-
|
|
23
|
+
setAppConfig(c, r) {
|
|
24
|
+
c.config = r.payload;
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
-
}), F1 =
|
|
27
|
+
}), F1 = H3.actions, W1 = H3.reducer, U1 = {}, q3 = K({
|
|
28
28
|
name: "devices",
|
|
29
29
|
initialState: U1,
|
|
30
30
|
reducers: {
|
|
31
|
-
setDeviceState(
|
|
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 w = r.payload.content, j = c[l] ?? {}, S = W3.merge(j, w);
|
|
36
36
|
return {
|
|
37
|
-
...
|
|
38
|
-
[l]:
|
|
37
|
+
...c,
|
|
38
|
+
[l]: S
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
|
-
}),
|
|
42
|
+
}), H1 = q3.actions, q1 = q3.reducer, Y1 = {}, Y3 = K({
|
|
43
43
|
name: "rooms",
|
|
44
|
-
initialState:
|
|
44
|
+
initialState: Y1,
|
|
45
45
|
reducers: {
|
|
46
|
-
setRoomState(
|
|
46
|
+
setRoomState(c, r) {
|
|
47
47
|
const l = r.payload.type.match("/room/(.*)/status");
|
|
48
48
|
if (!l)
|
|
49
49
|
return;
|
|
50
|
-
const
|
|
50
|
+
const w = l[1], j = r.payload.content, S = c[w] ?? {}, C = W3.merge(S, j);
|
|
51
51
|
return {
|
|
52
|
-
...
|
|
53
|
-
[
|
|
52
|
+
...c,
|
|
53
|
+
[w]: C
|
|
54
54
|
};
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
|
-
}),
|
|
57
|
+
}), G1 = Y3.actions, K1 = Y3.reducer, J1 = {
|
|
58
58
|
apiVersion: "",
|
|
59
59
|
serverIsRunningOnProcessorHardware: !1,
|
|
60
60
|
websocket: {
|
|
@@ -73,33 +73,33 @@ const $1 = {
|
|
|
73
73
|
userCode: "",
|
|
74
74
|
qrUrl: ""
|
|
75
75
|
}
|
|
76
|
-
},
|
|
76
|
+
}, G3 = K({
|
|
77
77
|
name: "runtimeConfig",
|
|
78
78
|
initialState: J1,
|
|
79
79
|
reducers: {
|
|
80
|
-
setRuntimeConfig(
|
|
81
|
-
|
|
80
|
+
setRuntimeConfig(c, r) {
|
|
81
|
+
c.apiVersion = r.payload.apiVersion, c.serverIsRunningOnProcessorHardware = r.payload.serverIsRunningOnProcessorHardware;
|
|
82
82
|
},
|
|
83
|
-
setToken(
|
|
84
|
-
|
|
83
|
+
setToken(c, r) {
|
|
84
|
+
c.token = r.payload;
|
|
85
85
|
},
|
|
86
|
-
setWebsocketIsConnected(
|
|
87
|
-
|
|
86
|
+
setWebsocketIsConnected(c, r) {
|
|
87
|
+
c.websocket.isConnected = r.payload;
|
|
88
88
|
},
|
|
89
|
-
setPluginVersion(
|
|
90
|
-
|
|
89
|
+
setPluginVersion(c, r) {
|
|
90
|
+
c.pluginVersion = r.payload;
|
|
91
91
|
},
|
|
92
|
-
setRoomData(
|
|
93
|
-
|
|
92
|
+
setRoomData(c, r) {
|
|
93
|
+
c.roomData = r.payload;
|
|
94
94
|
},
|
|
95
|
-
setCurrentRoomKey(
|
|
96
|
-
|
|
95
|
+
setCurrentRoomKey(c, r) {
|
|
96
|
+
c.roomData.roomKey = r.payload;
|
|
97
97
|
},
|
|
98
|
-
setUserCode(
|
|
99
|
-
|
|
98
|
+
setUserCode(c, r) {
|
|
99
|
+
c.roomData.userCode = r.payload.userCode, c.roomData.qrUrl = r.payload.qrUrl;
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
|
-
}), F =
|
|
102
|
+
}), F = G3.actions, z1 = G3.reducer, X1 = {
|
|
103
103
|
modalVisibility: {
|
|
104
104
|
showShutdownModal: !1,
|
|
105
105
|
showIncomingCallModal: !1
|
|
@@ -109,113 +109,115 @@ const $1 = {
|
|
|
109
109
|
name: "ui",
|
|
110
110
|
initialState: X1,
|
|
111
111
|
reducers: {
|
|
112
|
-
clearAllModals(
|
|
113
|
-
Object.entries(
|
|
114
|
-
|
|
112
|
+
clearAllModals(c) {
|
|
113
|
+
Object.entries(c.modalVisibility).forEach(([r]) => {
|
|
114
|
+
c.modalVisibility[r] = !1;
|
|
115
115
|
});
|
|
116
116
|
},
|
|
117
|
-
setModalState(
|
|
118
|
-
|
|
117
|
+
setModalState(c, r) {
|
|
118
|
+
c.modalVisibility[r.payload.modalType] = r.payload.value;
|
|
119
119
|
},
|
|
120
|
-
setShowShutdownModal(
|
|
121
|
-
|
|
120
|
+
setShowShutdownModal(c, r) {
|
|
121
|
+
c.modalVisibility.showShutdownModal = r.payload;
|
|
122
122
|
},
|
|
123
|
-
setIncomingCallModal(
|
|
124
|
-
|
|
123
|
+
setIncomingCallModal(c, r) {
|
|
124
|
+
c.modalVisibility.showIncomingCallModal = r.payload;
|
|
125
125
|
},
|
|
126
|
-
setPopoverState(
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
}),
|
|
126
|
+
setPopoverState(c, r) {
|
|
127
|
+
c.popoverVisibility[r.payload.popoverGroup] || (c.popoverVisibility[r.payload.popoverGroup] = {}), Object.entries(c.popoverVisibility[r.payload.popoverGroup]).forEach(([t]) => {
|
|
128
|
+
c.popoverVisibility[r.payload.popoverGroup][t] = !1;
|
|
129
|
+
}), c.popoverVisibility[r.payload.popoverGroup][r.payload.popoverId] = r.payload.value;
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
|
-
}),
|
|
132
|
+
}), i8 = K3.actions, Q1 = K3.reducer, J3 = A1({
|
|
133
133
|
appConfig: W1,
|
|
134
134
|
runtimeConfig: z1,
|
|
135
135
|
rooms: K1,
|
|
136
|
-
devices:
|
|
136
|
+
devices: q1,
|
|
137
137
|
ui: Q1
|
|
138
138
|
});
|
|
139
139
|
F3({
|
|
140
140
|
reducer: J3
|
|
141
141
|
});
|
|
142
|
-
const
|
|
142
|
+
const f = T1, N1 = () => f((c) => c.appConfig.config), a8 = () => f((c) => c.appConfig.config.apiPath), h8 = () => f((c) => Object.values(c.devices)), v8 = (c) => f((r) => r.devices[c]), d8 = (c) => f(
|
|
143
143
|
(r) => {
|
|
144
144
|
var t;
|
|
145
|
-
return r.rooms[
|
|
145
|
+
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.configuration : void 0;
|
|
146
146
|
}
|
|
147
|
-
), u8 = (
|
|
148
|
-
(r) => r.rooms[
|
|
149
|
-
),
|
|
147
|
+
), u8 = (c) => f(
|
|
148
|
+
(r) => r.rooms[c] ? r.rooms[c] : void 0
|
|
149
|
+
), g8 = (c) => f(
|
|
150
150
|
(r) => {
|
|
151
151
|
var t;
|
|
152
|
-
return r.rooms[
|
|
152
|
+
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.name : void 0;
|
|
153
153
|
}
|
|
154
|
-
),
|
|
154
|
+
), w8 = (c) => f(
|
|
155
155
|
(r) => {
|
|
156
156
|
var t, l;
|
|
157
|
-
return r.rooms[
|
|
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
|
+
), x8 = (c) => f(
|
|
160
160
|
(r) => {
|
|
161
161
|
var t, l;
|
|
162
|
-
return r.rooms[
|
|
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
|
+
), f8 = (c) => f(
|
|
165
165
|
(r) => {
|
|
166
166
|
var t, l;
|
|
167
|
-
return r.rooms[
|
|
167
|
+
return r.rooms[c] ? (l = (t = r.rooms[c]) == null ? void 0 : t.configuration) == null ? void 0 : l.displayKeys : void 0;
|
|
168
168
|
}
|
|
169
|
-
),
|
|
169
|
+
), M8 = (c) => f(
|
|
170
170
|
(r) => {
|
|
171
171
|
var t;
|
|
172
|
-
return r.rooms[
|
|
172
|
+
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.isInCall : void 0;
|
|
173
173
|
}
|
|
174
|
-
),
|
|
174
|
+
), p8 = (c) => f(
|
|
175
175
|
(r) => {
|
|
176
176
|
var t;
|
|
177
|
-
return r.rooms[
|
|
177
|
+
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.isWarmingUp : void 0;
|
|
178
178
|
}
|
|
179
|
-
),
|
|
179
|
+
), Z8 = (c) => f(
|
|
180
180
|
(r) => {
|
|
181
181
|
var t;
|
|
182
|
-
return r.rooms[
|
|
182
|
+
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.isCoolingDown : void 0;
|
|
183
183
|
}
|
|
184
|
-
),
|
|
184
|
+
), m8 = (c) => f(
|
|
185
185
|
(r) => {
|
|
186
186
|
var t;
|
|
187
|
-
return r.rooms[
|
|
187
|
+
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.isOn : void 0;
|
|
188
188
|
}
|
|
189
|
-
),
|
|
189
|
+
), j8 = (c) => f(
|
|
190
190
|
(r) => {
|
|
191
191
|
var t;
|
|
192
|
-
return r.rooms[
|
|
192
|
+
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.advancedSharingActive : void 0;
|
|
193
193
|
}
|
|
194
|
-
),
|
|
194
|
+
), C8 = (c) => f(
|
|
195
195
|
(r) => {
|
|
196
196
|
var t;
|
|
197
|
-
return r.rooms[
|
|
197
|
+
return r.rooms[c] ? (t = r.rooms[c]) == null ? void 0 : t.share : void 0;
|
|
198
198
|
}
|
|
199
|
-
), e2 = () =>
|
|
200
|
-
const t = r.ui.popoverVisibility[
|
|
199
|
+
), e2 = () => f((c) => c.runtimeConfig.websocket.isConnected), r2 = () => f((c) => c.runtimeConfig.roomData.roomKey), c2 = () => f((c) => c.runtimeConfig.roomData.clientId), S8 = () => f((c) => c.ui.modalVisibility.showShutdownModal), b8 = () => f((c) => c.ui.modalVisibility.showIncomingCallModal), y8 = (c) => f((r) => r.ui.modalVisibility[c]), I8 = (c) => f((r) => {
|
|
200
|
+
const t = r.ui.popoverVisibility[c];
|
|
201
201
|
if (t)
|
|
202
202
|
return Object.keys(t).find((l) => t[l]);
|
|
203
|
-
}),
|
|
203
|
+
}), R8 = (c, r) => f((t) => {
|
|
204
204
|
var l;
|
|
205
|
-
return (l = t.ui.popoverVisibility[
|
|
205
|
+
return (l = t.ui.popoverVisibility[c]) == null ? void 0 : l[r];
|
|
206
206
|
}), P = F3({
|
|
207
207
|
reducer: J3
|
|
208
208
|
}), s2 = P1, v3 = L1.create();
|
|
209
209
|
function t2() {
|
|
210
|
-
const
|
|
210
|
+
const c = s2();
|
|
211
211
|
return async () => {
|
|
212
212
|
try {
|
|
213
|
-
const r =
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
const
|
|
218
|
-
|
|
213
|
+
const r = location.pathname.split("/").filter((w) => w.length > 0);
|
|
214
|
+
r.length >= 5 ? r.length = 5 : r.length = 2;
|
|
215
|
+
const t = `/${r.join("/")}`, l = await v3.get("/_local-config/_config.local.json", { baseURL: t });
|
|
216
|
+
if (console.log("configRes", l), l.status == 200 && l.data) {
|
|
217
|
+
const w = l.data.apiPath;
|
|
218
|
+
c(F1.setAppConfig(l.data));
|
|
219
|
+
const j = await v3.get(`${w}/version`);
|
|
220
|
+
j.status == 200 && j.data && (console.log("versionRes", j.data), c(F.setRuntimeConfig(j.data)));
|
|
219
221
|
}
|
|
220
222
|
} catch (r) {
|
|
221
223
|
console.log("Error getting config", r);
|
|
@@ -223,7 +225,7 @@ function t2() {
|
|
|
223
225
|
return !0;
|
|
224
226
|
};
|
|
225
227
|
}
|
|
226
|
-
var
|
|
228
|
+
var d3 = { exports: {} }, H = {};
|
|
227
229
|
/**
|
|
228
230
|
* @license React
|
|
229
231
|
* react-jsx-runtime.development.js
|
|
@@ -233,91 +235,91 @@ var u3 = { exports: {} }, q = {};
|
|
|
233
235
|
* This source code is licensed under the MIT license found in the
|
|
234
236
|
* LICENSE file in the root directory of this source tree.
|
|
235
237
|
*/
|
|
236
|
-
var
|
|
238
|
+
var k3;
|
|
237
239
|
function o2() {
|
|
238
|
-
return
|
|
239
|
-
var
|
|
240
|
-
function D(
|
|
241
|
-
if (
|
|
240
|
+
return k3 || (k3 = 1, process.env.NODE_ENV !== "production" && function() {
|
|
241
|
+
var c = U3, r = Symbol.for("react.element"), t = Symbol.for("react.portal"), l = Symbol.for("react.fragment"), w = Symbol.for("react.strict_mode"), j = Symbol.for("react.profiler"), S = Symbol.for("react.provider"), C = Symbol.for("react.context"), g = Symbol.for("react.forward_ref"), R = Symbol.for("react.suspense"), Z = Symbol.for("react.suspense_list"), b = Symbol.for("react.memo"), E = Symbol.for("react.lazy"), _ = Symbol.for("react.offscreen"), M = Symbol.iterator, L = "@@iterator";
|
|
242
|
+
function D(s) {
|
|
243
|
+
if (s === null || typeof s != "object")
|
|
242
244
|
return null;
|
|
243
|
-
var o =
|
|
245
|
+
var o = M && s[M] || s[L];
|
|
244
246
|
return typeof o == "function" ? o : null;
|
|
245
247
|
}
|
|
246
|
-
var
|
|
247
|
-
function
|
|
248
|
+
var x = c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
249
|
+
function y(s) {
|
|
248
250
|
{
|
|
249
251
|
for (var o = arguments.length, n = new Array(o > 1 ? o - 1 : 0), i = 1; i < o; i++)
|
|
250
252
|
n[i - 1] = arguments[i];
|
|
251
|
-
X3("error",
|
|
253
|
+
X3("error", s, n);
|
|
252
254
|
}
|
|
253
255
|
}
|
|
254
|
-
function X3(
|
|
256
|
+
function X3(s, o, n) {
|
|
255
257
|
{
|
|
256
|
-
var i =
|
|
258
|
+
var i = x.ReactDebugCurrentFrame, v = i.getStackAddendum();
|
|
257
259
|
v !== "" && (o += "%s", n = n.concat([v]));
|
|
258
|
-
var
|
|
260
|
+
var u = n.map(function(h) {
|
|
259
261
|
return String(h);
|
|
260
262
|
});
|
|
261
|
-
|
|
263
|
+
u.unshift("Warning: " + o), Function.prototype.apply.call(console[s], console, u);
|
|
262
264
|
}
|
|
263
265
|
}
|
|
264
|
-
var Q3 = !1, N3 = !1, e1 = !1, r1 = !1, c1 = !1,
|
|
265
|
-
|
|
266
|
-
function s1(
|
|
267
|
-
return !!(typeof
|
|
266
|
+
var Q3 = !1, N3 = !1, e1 = !1, r1 = !1, c1 = !1, u3;
|
|
267
|
+
u3 = Symbol.for("react.module.reference");
|
|
268
|
+
function s1(s) {
|
|
269
|
+
return !!(typeof s == "string" || typeof s == "function" || s === l || s === j || c1 || s === w || s === R || s === Z || r1 || s === _ || Q3 || N3 || e1 || typeof s == "object" && s !== null && (s.$$typeof === E || s.$$typeof === b || s.$$typeof === S || s.$$typeof === C || s.$$typeof === g || // This needs to include all possible module reference object
|
|
268
270
|
// types supported by any Flight configuration anywhere since
|
|
269
271
|
// we don't know which Flight build this will end up being used
|
|
270
272
|
// with.
|
|
271
|
-
|
|
273
|
+
s.$$typeof === u3 || s.getModuleId !== void 0));
|
|
272
274
|
}
|
|
273
|
-
function t1(
|
|
274
|
-
var i =
|
|
275
|
+
function t1(s, o, n) {
|
|
276
|
+
var i = s.displayName;
|
|
275
277
|
if (i)
|
|
276
278
|
return i;
|
|
277
279
|
var v = o.displayName || o.name || "";
|
|
278
280
|
return v !== "" ? n + "(" + v + ")" : n;
|
|
279
281
|
}
|
|
280
|
-
function g3(
|
|
281
|
-
return
|
|
282
|
+
function g3(s) {
|
|
283
|
+
return s.displayName || "Context";
|
|
282
284
|
}
|
|
283
|
-
function A(
|
|
284
|
-
if (
|
|
285
|
+
function A(s) {
|
|
286
|
+
if (s == null)
|
|
285
287
|
return null;
|
|
286
|
-
if (typeof
|
|
287
|
-
return
|
|
288
|
-
if (typeof
|
|
289
|
-
return
|
|
290
|
-
switch (
|
|
288
|
+
if (typeof s.tag == "number" && y("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof s == "function")
|
|
289
|
+
return s.displayName || s.name || null;
|
|
290
|
+
if (typeof s == "string")
|
|
291
|
+
return s;
|
|
292
|
+
switch (s) {
|
|
291
293
|
case l:
|
|
292
294
|
return "Fragment";
|
|
293
295
|
case t:
|
|
294
296
|
return "Portal";
|
|
295
|
-
case
|
|
297
|
+
case j:
|
|
296
298
|
return "Profiler";
|
|
297
|
-
case
|
|
299
|
+
case w:
|
|
298
300
|
return "StrictMode";
|
|
299
|
-
case
|
|
301
|
+
case R:
|
|
300
302
|
return "Suspense";
|
|
301
303
|
case Z:
|
|
302
304
|
return "SuspenseList";
|
|
303
305
|
}
|
|
304
|
-
if (typeof
|
|
305
|
-
switch (
|
|
306
|
-
case j:
|
|
307
|
-
var o = c;
|
|
308
|
-
return g3(o) + ".Consumer";
|
|
306
|
+
if (typeof s == "object")
|
|
307
|
+
switch (s.$$typeof) {
|
|
309
308
|
case C:
|
|
310
|
-
var
|
|
309
|
+
var o = s;
|
|
310
|
+
return g3(o) + ".Consumer";
|
|
311
|
+
case S:
|
|
312
|
+
var n = s;
|
|
311
313
|
return g3(n._context) + ".Provider";
|
|
312
314
|
case g:
|
|
313
|
-
return t1(
|
|
314
|
-
case
|
|
315
|
-
var i =
|
|
316
|
-
return i !== null ? i : A(
|
|
315
|
+
return t1(s, s.render, "ForwardRef");
|
|
316
|
+
case b:
|
|
317
|
+
var i = s.displayName || null;
|
|
318
|
+
return i !== null ? i : A(s.type) || "Memo";
|
|
317
319
|
case E: {
|
|
318
|
-
var v =
|
|
320
|
+
var v = s, u = v._payload, h = v._init;
|
|
319
321
|
try {
|
|
320
|
-
return A(h(
|
|
322
|
+
return A(h(u));
|
|
321
323
|
} catch {
|
|
322
324
|
return null;
|
|
323
325
|
}
|
|
@@ -333,20 +335,20 @@ function o2() {
|
|
|
333
335
|
{
|
|
334
336
|
if (W === 0) {
|
|
335
337
|
w3 = console.log, x3 = console.info, f3 = console.warn, M3 = console.error, p3 = console.group, Z3 = console.groupCollapsed, m3 = console.groupEnd;
|
|
336
|
-
var
|
|
338
|
+
var s = {
|
|
337
339
|
configurable: !0,
|
|
338
340
|
enumerable: !0,
|
|
339
341
|
value: j3,
|
|
340
342
|
writable: !0
|
|
341
343
|
};
|
|
342
344
|
Object.defineProperties(console, {
|
|
343
|
-
info:
|
|
344
|
-
log:
|
|
345
|
-
warn:
|
|
346
|
-
error:
|
|
347
|
-
group:
|
|
348
|
-
groupCollapsed:
|
|
349
|
-
groupEnd:
|
|
345
|
+
info: s,
|
|
346
|
+
log: s,
|
|
347
|
+
warn: s,
|
|
348
|
+
error: s,
|
|
349
|
+
group: s,
|
|
350
|
+
groupCollapsed: s,
|
|
351
|
+
groupEnd: s
|
|
350
352
|
});
|
|
351
353
|
}
|
|
352
354
|
W++;
|
|
@@ -355,40 +357,40 @@ function o2() {
|
|
|
355
357
|
function n1() {
|
|
356
358
|
{
|
|
357
359
|
if (W--, W === 0) {
|
|
358
|
-
var
|
|
360
|
+
var s = {
|
|
359
361
|
configurable: !0,
|
|
360
362
|
enumerable: !0,
|
|
361
363
|
writable: !0
|
|
362
364
|
};
|
|
363
365
|
Object.defineProperties(console, {
|
|
364
|
-
log: O({},
|
|
366
|
+
log: O({}, s, {
|
|
365
367
|
value: w3
|
|
366
368
|
}),
|
|
367
|
-
info: O({},
|
|
369
|
+
info: O({}, s, {
|
|
368
370
|
value: x3
|
|
369
371
|
}),
|
|
370
|
-
warn: O({},
|
|
372
|
+
warn: O({}, s, {
|
|
371
373
|
value: f3
|
|
372
374
|
}),
|
|
373
|
-
error: O({},
|
|
375
|
+
error: O({}, s, {
|
|
374
376
|
value: M3
|
|
375
377
|
}),
|
|
376
|
-
group: O({},
|
|
378
|
+
group: O({}, s, {
|
|
377
379
|
value: p3
|
|
378
380
|
}),
|
|
379
|
-
groupCollapsed: O({},
|
|
381
|
+
groupCollapsed: O({}, s, {
|
|
380
382
|
value: Z3
|
|
381
383
|
}),
|
|
382
|
-
groupEnd: O({},
|
|
384
|
+
groupEnd: O({}, s, {
|
|
383
385
|
value: m3
|
|
384
386
|
})
|
|
385
387
|
});
|
|
386
388
|
}
|
|
387
|
-
W < 0 &&
|
|
389
|
+
W < 0 && y("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
|
388
390
|
}
|
|
389
391
|
}
|
|
390
|
-
var c3 =
|
|
391
|
-
function J(
|
|
392
|
+
var c3 = x.ReactCurrentDispatcher, s3;
|
|
393
|
+
function J(s, o, n) {
|
|
392
394
|
{
|
|
393
395
|
if (s3 === void 0)
|
|
394
396
|
try {
|
|
@@ -398,7 +400,7 @@ function o2() {
|
|
|
398
400
|
s3 = i && i[1] || "";
|
|
399
401
|
}
|
|
400
402
|
return `
|
|
401
|
-
` + s3 +
|
|
403
|
+
` + s3 + s;
|
|
402
404
|
}
|
|
403
405
|
}
|
|
404
406
|
var t3 = !1, z;
|
|
@@ -406,11 +408,11 @@ function o2() {
|
|
|
406
408
|
var l1 = typeof WeakMap == "function" ? WeakMap : Map;
|
|
407
409
|
z = new l1();
|
|
408
410
|
}
|
|
409
|
-
function C3(
|
|
410
|
-
if (!
|
|
411
|
+
function C3(s, o) {
|
|
412
|
+
if (!s || t3)
|
|
411
413
|
return "";
|
|
412
414
|
{
|
|
413
|
-
var n = z.get(
|
|
415
|
+
var n = z.get(s);
|
|
414
416
|
if (n !== void 0)
|
|
415
417
|
return n;
|
|
416
418
|
}
|
|
@@ -418,8 +420,8 @@ function o2() {
|
|
|
418
420
|
t3 = !0;
|
|
419
421
|
var v = Error.prepareStackTrace;
|
|
420
422
|
Error.prepareStackTrace = void 0;
|
|
421
|
-
var
|
|
422
|
-
|
|
423
|
+
var u;
|
|
424
|
+
u = c3.current, c3.current = null, o1();
|
|
423
425
|
try {
|
|
424
426
|
if (o) {
|
|
425
427
|
var h = function() {
|
|
@@ -435,14 +437,14 @@ function o2() {
|
|
|
435
437
|
} catch (T) {
|
|
436
438
|
i = T;
|
|
437
439
|
}
|
|
438
|
-
Reflect.construct(
|
|
440
|
+
Reflect.construct(s, [], h);
|
|
439
441
|
} else {
|
|
440
442
|
try {
|
|
441
443
|
h.call();
|
|
442
444
|
} catch (T) {
|
|
443
445
|
i = T;
|
|
444
446
|
}
|
|
445
|
-
|
|
447
|
+
s.call(h.prototype);
|
|
446
448
|
}
|
|
447
449
|
} else {
|
|
448
450
|
try {
|
|
@@ -450,182 +452,182 @@ function o2() {
|
|
|
450
452
|
} catch (T) {
|
|
451
453
|
i = T;
|
|
452
454
|
}
|
|
453
|
-
|
|
455
|
+
s();
|
|
454
456
|
}
|
|
455
457
|
} catch (T) {
|
|
456
458
|
if (T && i && typeof T.stack == "string") {
|
|
457
459
|
for (var a = T.stack.split(`
|
|
458
|
-
`),
|
|
459
|
-
`), p = a.length - 1, m =
|
|
460
|
+
`), I = i.stack.split(`
|
|
461
|
+
`), p = a.length - 1, m = I.length - 1; p >= 1 && m >= 0 && a[p] !== I[m]; )
|
|
460
462
|
m--;
|
|
461
463
|
for (; p >= 1 && m >= 0; p--, m--)
|
|
462
|
-
if (a[p] !==
|
|
464
|
+
if (a[p] !== I[m]) {
|
|
463
465
|
if (p !== 1 || m !== 1)
|
|
464
466
|
do
|
|
465
|
-
if (p--, m--, m < 0 || a[p] !==
|
|
467
|
+
if (p--, m--, m < 0 || a[p] !== I[m]) {
|
|
466
468
|
var B = `
|
|
467
469
|
` + a[p].replace(" at new ", " at ");
|
|
468
|
-
return
|
|
470
|
+
return s.displayName && B.includes("<anonymous>") && (B = B.replace("<anonymous>", s.displayName)), typeof s == "function" && z.set(s, B), B;
|
|
469
471
|
}
|
|
470
472
|
while (p >= 1 && m >= 0);
|
|
471
473
|
break;
|
|
472
474
|
}
|
|
473
475
|
}
|
|
474
476
|
} finally {
|
|
475
|
-
t3 = !1, c3.current =
|
|
477
|
+
t3 = !1, c3.current = u, n1(), Error.prepareStackTrace = v;
|
|
476
478
|
}
|
|
477
|
-
var $ =
|
|
478
|
-
return typeof
|
|
479
|
+
var $ = s ? s.displayName || s.name : "", D3 = $ ? J($) : "";
|
|
480
|
+
return typeof s == "function" && z.set(s, D3), D3;
|
|
479
481
|
}
|
|
480
|
-
function i1(
|
|
481
|
-
return C3(
|
|
482
|
+
function i1(s, o, n) {
|
|
483
|
+
return C3(s, !1);
|
|
482
484
|
}
|
|
483
|
-
function a1(
|
|
484
|
-
var o =
|
|
485
|
+
function a1(s) {
|
|
486
|
+
var o = s.prototype;
|
|
485
487
|
return !!(o && o.isReactComponent);
|
|
486
488
|
}
|
|
487
|
-
function X(
|
|
488
|
-
if (
|
|
489
|
+
function X(s, o, n) {
|
|
490
|
+
if (s == null)
|
|
489
491
|
return "";
|
|
490
|
-
if (typeof
|
|
491
|
-
return C3(
|
|
492
|
-
if (typeof
|
|
493
|
-
return J(
|
|
494
|
-
switch (
|
|
495
|
-
case
|
|
492
|
+
if (typeof s == "function")
|
|
493
|
+
return C3(s, a1(s));
|
|
494
|
+
if (typeof s == "string")
|
|
495
|
+
return J(s);
|
|
496
|
+
switch (s) {
|
|
497
|
+
case R:
|
|
496
498
|
return J("Suspense");
|
|
497
499
|
case Z:
|
|
498
500
|
return J("SuspenseList");
|
|
499
501
|
}
|
|
500
|
-
if (typeof
|
|
501
|
-
switch (
|
|
502
|
+
if (typeof s == "object")
|
|
503
|
+
switch (s.$$typeof) {
|
|
502
504
|
case g:
|
|
503
|
-
return i1(
|
|
504
|
-
case
|
|
505
|
-
return X(
|
|
505
|
+
return i1(s.render);
|
|
506
|
+
case b:
|
|
507
|
+
return X(s.type, o, n);
|
|
506
508
|
case E: {
|
|
507
|
-
var i =
|
|
509
|
+
var i = s, v = i._payload, u = i._init;
|
|
508
510
|
try {
|
|
509
|
-
return X(
|
|
511
|
+
return X(u(v), o, n);
|
|
510
512
|
} catch {
|
|
511
513
|
}
|
|
512
514
|
}
|
|
513
515
|
}
|
|
514
516
|
return "";
|
|
515
517
|
}
|
|
516
|
-
var Q = Object.prototype.hasOwnProperty, S3 = {}, b3 =
|
|
517
|
-
function N(
|
|
518
|
-
if (
|
|
519
|
-
var o =
|
|
518
|
+
var Q = Object.prototype.hasOwnProperty, S3 = {}, b3 = x.ReactDebugCurrentFrame;
|
|
519
|
+
function N(s) {
|
|
520
|
+
if (s) {
|
|
521
|
+
var o = s._owner, n = X(s.type, s._source, o ? o.type : null);
|
|
520
522
|
b3.setExtraStackFrame(n);
|
|
521
523
|
} else
|
|
522
524
|
b3.setExtraStackFrame(null);
|
|
523
525
|
}
|
|
524
|
-
function h1(
|
|
526
|
+
function h1(s, o, n, i, v) {
|
|
525
527
|
{
|
|
526
|
-
var
|
|
527
|
-
for (var h in
|
|
528
|
-
if (
|
|
528
|
+
var u = Function.call.bind(Q);
|
|
529
|
+
for (var h in s)
|
|
530
|
+
if (u(s, h)) {
|
|
529
531
|
var a = void 0;
|
|
530
532
|
try {
|
|
531
|
-
if (typeof
|
|
532
|
-
var
|
|
533
|
-
throw
|
|
533
|
+
if (typeof s[h] != "function") {
|
|
534
|
+
var I = Error((i || "React class") + ": " + n + " type `" + h + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof s[h] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
535
|
+
throw I.name = "Invariant Violation", I;
|
|
534
536
|
}
|
|
535
|
-
a =
|
|
537
|
+
a = s[h](o, h, i, n, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
536
538
|
} catch (p) {
|
|
537
539
|
a = p;
|
|
538
540
|
}
|
|
539
|
-
a && !(a instanceof Error) && (N(v),
|
|
541
|
+
a && !(a instanceof Error) && (N(v), y("%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, h, typeof a), N(null)), a instanceof Error && !(a.message in S3) && (S3[a.message] = !0, N(v), y("Failed %s type: %s", n, a.message), N(null));
|
|
540
542
|
}
|
|
541
543
|
}
|
|
542
544
|
}
|
|
543
545
|
var v1 = Array.isArray;
|
|
544
|
-
function o3(
|
|
545
|
-
return v1(
|
|
546
|
+
function o3(s) {
|
|
547
|
+
return v1(s);
|
|
546
548
|
}
|
|
547
|
-
function
|
|
549
|
+
function d1(s) {
|
|
548
550
|
{
|
|
549
|
-
var o = typeof Symbol == "function" && Symbol.toStringTag, n = o &&
|
|
551
|
+
var o = typeof Symbol == "function" && Symbol.toStringTag, n = o && s[Symbol.toStringTag] || s.constructor.name || "Object";
|
|
550
552
|
return n;
|
|
551
553
|
}
|
|
552
554
|
}
|
|
553
|
-
function
|
|
555
|
+
function u1(s) {
|
|
554
556
|
try {
|
|
555
|
-
return y3(
|
|
557
|
+
return y3(s), !1;
|
|
556
558
|
} catch {
|
|
557
559
|
return !0;
|
|
558
560
|
}
|
|
559
561
|
}
|
|
560
|
-
function y3(
|
|
561
|
-
return "" +
|
|
562
|
+
function y3(s) {
|
|
563
|
+
return "" + s;
|
|
562
564
|
}
|
|
563
|
-
function I3(
|
|
564
|
-
if (
|
|
565
|
-
return
|
|
565
|
+
function I3(s) {
|
|
566
|
+
if (u1(s))
|
|
567
|
+
return y("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", d1(s)), y3(s);
|
|
566
568
|
}
|
|
567
|
-
var U =
|
|
569
|
+
var U = x.ReactCurrentOwner, g1 = {
|
|
568
570
|
key: !0,
|
|
569
571
|
ref: !0,
|
|
570
572
|
__self: !0,
|
|
571
573
|
__source: !0
|
|
572
574
|
}, R3, E3, n3;
|
|
573
575
|
n3 = {};
|
|
574
|
-
function w1(
|
|
575
|
-
if (Q.call(
|
|
576
|
-
var o = Object.getOwnPropertyDescriptor(
|
|
576
|
+
function w1(s) {
|
|
577
|
+
if (Q.call(s, "ref")) {
|
|
578
|
+
var o = Object.getOwnPropertyDescriptor(s, "ref").get;
|
|
577
579
|
if (o && o.isReactWarning)
|
|
578
580
|
return !1;
|
|
579
581
|
}
|
|
580
|
-
return
|
|
582
|
+
return s.ref !== void 0;
|
|
581
583
|
}
|
|
582
|
-
function x1(
|
|
583
|
-
if (Q.call(
|
|
584
|
-
var o = Object.getOwnPropertyDescriptor(
|
|
584
|
+
function x1(s) {
|
|
585
|
+
if (Q.call(s, "key")) {
|
|
586
|
+
var o = Object.getOwnPropertyDescriptor(s, "key").get;
|
|
585
587
|
if (o && o.isReactWarning)
|
|
586
588
|
return !1;
|
|
587
589
|
}
|
|
588
|
-
return
|
|
590
|
+
return s.key !== void 0;
|
|
589
591
|
}
|
|
590
|
-
function f1(
|
|
591
|
-
if (typeof
|
|
592
|
+
function f1(s, o) {
|
|
593
|
+
if (typeof s.ref == "string" && U.current && o && U.current.stateNode !== o) {
|
|
592
594
|
var n = A(U.current.type);
|
|
593
|
-
n3[n] || (
|
|
595
|
+
n3[n] || (y('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', A(U.current.type), s.ref), n3[n] = !0);
|
|
594
596
|
}
|
|
595
597
|
}
|
|
596
|
-
function M1(
|
|
598
|
+
function M1(s, o) {
|
|
597
599
|
{
|
|
598
600
|
var n = function() {
|
|
599
|
-
R3 || (R3 = !0,
|
|
601
|
+
R3 || (R3 = !0, y("%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));
|
|
600
602
|
};
|
|
601
|
-
n.isReactWarning = !0, Object.defineProperty(
|
|
603
|
+
n.isReactWarning = !0, Object.defineProperty(s, "key", {
|
|
602
604
|
get: n,
|
|
603
605
|
configurable: !0
|
|
604
606
|
});
|
|
605
607
|
}
|
|
606
608
|
}
|
|
607
|
-
function p1(
|
|
609
|
+
function p1(s, o) {
|
|
608
610
|
{
|
|
609
611
|
var n = function() {
|
|
610
|
-
E3 || (E3 = !0,
|
|
612
|
+
E3 || (E3 = !0, y("%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));
|
|
611
613
|
};
|
|
612
|
-
n.isReactWarning = !0, Object.defineProperty(
|
|
614
|
+
n.isReactWarning = !0, Object.defineProperty(s, "ref", {
|
|
613
615
|
get: n,
|
|
614
616
|
configurable: !0
|
|
615
617
|
});
|
|
616
618
|
}
|
|
617
619
|
}
|
|
618
|
-
var Z1 = function(
|
|
620
|
+
var Z1 = function(s, o, n, i, v, u, h) {
|
|
619
621
|
var a = {
|
|
620
622
|
// This tag allows us to uniquely identify this as a React Element
|
|
621
623
|
$$typeof: r,
|
|
622
624
|
// Built-in properties that belong on the element
|
|
623
|
-
type:
|
|
625
|
+
type: s,
|
|
624
626
|
key: o,
|
|
625
627
|
ref: n,
|
|
626
628
|
props: h,
|
|
627
629
|
// Record the component responsible for creating this element.
|
|
628
|
-
_owner:
|
|
630
|
+
_owner: u
|
|
629
631
|
};
|
|
630
632
|
return a._store = {}, Object.defineProperty(a._store, "validated", {
|
|
631
633
|
configurable: !1,
|
|
@@ -644,53 +646,53 @@ function o2() {
|
|
|
644
646
|
value: v
|
|
645
647
|
}), Object.freeze && (Object.freeze(a.props), Object.freeze(a)), a;
|
|
646
648
|
};
|
|
647
|
-
function m1(
|
|
649
|
+
function m1(s, o, n, i, v) {
|
|
648
650
|
{
|
|
649
|
-
var
|
|
650
|
-
n !== void 0 && (I3(n), a = "" + n), x1(o) && (I3(o.key), a = "" + o.key), w1(o) && (
|
|
651
|
-
for (
|
|
652
|
-
Q.call(o,
|
|
653
|
-
if (
|
|
654
|
-
var p =
|
|
655
|
-
for (
|
|
656
|
-
h[
|
|
657
|
-
}
|
|
658
|
-
if (a ||
|
|
659
|
-
var m = typeof
|
|
660
|
-
a && M1(h, m),
|
|
661
|
-
}
|
|
662
|
-
return Z1(
|
|
651
|
+
var u, h = {}, a = null, I = null;
|
|
652
|
+
n !== void 0 && (I3(n), a = "" + n), x1(o) && (I3(o.key), a = "" + o.key), w1(o) && (I = o.ref, f1(o, v));
|
|
653
|
+
for (u in o)
|
|
654
|
+
Q.call(o, u) && !g1.hasOwnProperty(u) && (h[u] = o[u]);
|
|
655
|
+
if (s && s.defaultProps) {
|
|
656
|
+
var p = s.defaultProps;
|
|
657
|
+
for (u in p)
|
|
658
|
+
h[u] === void 0 && (h[u] = p[u]);
|
|
659
|
+
}
|
|
660
|
+
if (a || I) {
|
|
661
|
+
var m = typeof s == "function" ? s.displayName || s.name || "Unknown" : s;
|
|
662
|
+
a && M1(h, m), I && p1(h, m);
|
|
663
|
+
}
|
|
664
|
+
return Z1(s, a, I, v, i, U.current, h);
|
|
663
665
|
}
|
|
664
666
|
}
|
|
665
|
-
var l3 =
|
|
666
|
-
function
|
|
667
|
-
if (
|
|
668
|
-
var o =
|
|
667
|
+
var l3 = x.ReactCurrentOwner, _3 = x.ReactDebugCurrentFrame;
|
|
668
|
+
function V(s) {
|
|
669
|
+
if (s) {
|
|
670
|
+
var o = s._owner, n = X(s.type, s._source, o ? o.type : null);
|
|
669
671
|
_3.setExtraStackFrame(n);
|
|
670
672
|
} else
|
|
671
673
|
_3.setExtraStackFrame(null);
|
|
672
674
|
}
|
|
673
675
|
var i3;
|
|
674
676
|
i3 = !1;
|
|
675
|
-
function a3(
|
|
676
|
-
return typeof
|
|
677
|
+
function a3(s) {
|
|
678
|
+
return typeof s == "object" && s !== null && s.$$typeof === r;
|
|
677
679
|
}
|
|
678
680
|
function B3() {
|
|
679
681
|
{
|
|
680
682
|
if (l3.current) {
|
|
681
|
-
var
|
|
682
|
-
if (
|
|
683
|
+
var s = A(l3.current.type);
|
|
684
|
+
if (s)
|
|
683
685
|
return `
|
|
684
686
|
|
|
685
|
-
Check the render method of \`` +
|
|
687
|
+
Check the render method of \`` + s + "`.";
|
|
686
688
|
}
|
|
687
689
|
return "";
|
|
688
690
|
}
|
|
689
691
|
}
|
|
690
|
-
function j1(
|
|
692
|
+
function j1(s) {
|
|
691
693
|
{
|
|
692
|
-
if (
|
|
693
|
-
var o =
|
|
694
|
+
if (s !== void 0) {
|
|
695
|
+
var o = s.fileName.replace(/^.*[\\\/]/, ""), n = s.lineNumber;
|
|
694
696
|
return `
|
|
695
697
|
|
|
696
698
|
Check your code at ` + o + ":" + n + ".";
|
|
@@ -699,11 +701,11 @@ Check your code at ` + o + ":" + n + ".";
|
|
|
699
701
|
}
|
|
700
702
|
}
|
|
701
703
|
var L3 = {};
|
|
702
|
-
function C1(
|
|
704
|
+
function C1(s) {
|
|
703
705
|
{
|
|
704
706
|
var o = B3();
|
|
705
707
|
if (!o) {
|
|
706
|
-
var n = typeof
|
|
708
|
+
var n = typeof s == "string" ? s : s.displayName || s.name;
|
|
707
709
|
n && (o = `
|
|
708
710
|
|
|
709
711
|
Check the top-level render call using <` + n + ">.");
|
|
@@ -711,41 +713,41 @@ Check the top-level render call using <` + n + ">.");
|
|
|
711
713
|
return o;
|
|
712
714
|
}
|
|
713
715
|
}
|
|
714
|
-
function A3(
|
|
716
|
+
function A3(s, o) {
|
|
715
717
|
{
|
|
716
|
-
if (!
|
|
718
|
+
if (!s._store || s._store.validated || s.key != null)
|
|
717
719
|
return;
|
|
718
|
-
|
|
720
|
+
s._store.validated = !0;
|
|
719
721
|
var n = C1(o);
|
|
720
722
|
if (L3[n])
|
|
721
723
|
return;
|
|
722
724
|
L3[n] = !0;
|
|
723
725
|
var i = "";
|
|
724
|
-
|
|
726
|
+
s && s._owner && s._owner !== l3.current && (i = " It was passed a child from " + A(s._owner.type) + "."), V(s), y('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), V(null);
|
|
725
727
|
}
|
|
726
728
|
}
|
|
727
|
-
function T3(
|
|
729
|
+
function T3(s, o) {
|
|
728
730
|
{
|
|
729
|
-
if (typeof
|
|
731
|
+
if (typeof s != "object")
|
|
730
732
|
return;
|
|
731
|
-
if (o3(
|
|
732
|
-
for (var n = 0; n <
|
|
733
|
-
var i =
|
|
733
|
+
if (o3(s))
|
|
734
|
+
for (var n = 0; n < s.length; n++) {
|
|
735
|
+
var i = s[n];
|
|
734
736
|
a3(i) && A3(i, o);
|
|
735
737
|
}
|
|
736
|
-
else if (a3(
|
|
737
|
-
|
|
738
|
-
else if (
|
|
739
|
-
var v = D(
|
|
740
|
-
if (typeof v == "function" && v !==
|
|
741
|
-
for (var
|
|
738
|
+
else if (a3(s))
|
|
739
|
+
s._store && (s._store.validated = !0);
|
|
740
|
+
else if (s) {
|
|
741
|
+
var v = D(s);
|
|
742
|
+
if (typeof v == "function" && v !== s.entries)
|
|
743
|
+
for (var u = v.call(s), h; !(h = u.next()).done; )
|
|
742
744
|
a3(h.value) && A3(h.value, o);
|
|
743
745
|
}
|
|
744
746
|
}
|
|
745
747
|
}
|
|
746
|
-
function S1(
|
|
748
|
+
function S1(s) {
|
|
747
749
|
{
|
|
748
|
-
var o =
|
|
750
|
+
var o = s.type;
|
|
749
751
|
if (o == null || typeof o == "string")
|
|
750
752
|
return;
|
|
751
753
|
var n;
|
|
@@ -753,45 +755,45 @@ Check the top-level render call using <` + n + ">.");
|
|
|
753
755
|
n = o.propTypes;
|
|
754
756
|
else if (typeof o == "object" && (o.$$typeof === g || // Note: Memo only checks outer props here.
|
|
755
757
|
// Inner props are checked in the reconciler.
|
|
756
|
-
o.$$typeof ===
|
|
758
|
+
o.$$typeof === b))
|
|
757
759
|
n = o.propTypes;
|
|
758
760
|
else
|
|
759
761
|
return;
|
|
760
762
|
if (n) {
|
|
761
763
|
var i = A(o);
|
|
762
|
-
h1(n,
|
|
764
|
+
h1(n, s.props, "prop", i, s);
|
|
763
765
|
} else if (o.PropTypes !== void 0 && !i3) {
|
|
764
766
|
i3 = !0;
|
|
765
767
|
var v = A(o);
|
|
766
|
-
|
|
768
|
+
y("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", v || "Unknown");
|
|
767
769
|
}
|
|
768
|
-
typeof o.getDefaultProps == "function" && !o.getDefaultProps.isReactClassApproved &&
|
|
770
|
+
typeof o.getDefaultProps == "function" && !o.getDefaultProps.isReactClassApproved && y("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
|
769
771
|
}
|
|
770
772
|
}
|
|
771
|
-
function b1(
|
|
773
|
+
function b1(s) {
|
|
772
774
|
{
|
|
773
|
-
for (var o = Object.keys(
|
|
775
|
+
for (var o = Object.keys(s.props), n = 0; n < o.length; n++) {
|
|
774
776
|
var i = o[n];
|
|
775
777
|
if (i !== "children" && i !== "key") {
|
|
776
|
-
|
|
778
|
+
V(s), y("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", i), V(null);
|
|
777
779
|
break;
|
|
778
780
|
}
|
|
779
781
|
}
|
|
780
|
-
|
|
782
|
+
s.ref !== null && (V(s), y("Invalid attribute `ref` supplied to `React.Fragment`."), V(null));
|
|
781
783
|
}
|
|
782
784
|
}
|
|
783
|
-
function P3(
|
|
785
|
+
function P3(s, o, n, i, v, u) {
|
|
784
786
|
{
|
|
785
|
-
var h = s1(
|
|
787
|
+
var h = s1(s);
|
|
786
788
|
if (!h) {
|
|
787
789
|
var a = "";
|
|
788
|
-
(
|
|
789
|
-
var
|
|
790
|
-
|
|
790
|
+
(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 I = j1(v);
|
|
792
|
+
I ? a += I : a += B3();
|
|
791
793
|
var p;
|
|
792
|
-
|
|
794
|
+
s === null ? p = "null" : o3(s) ? p = "array" : s !== void 0 && s.$$typeof === r ? (p = "<" + (A(s.type) || "Unknown") + " />", a = " Did you accidentally export a JSX literal instead of a component?") : p = typeof s, y("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", p, a);
|
|
793
795
|
}
|
|
794
|
-
var m = m1(
|
|
796
|
+
var m = m1(s, o, n, v, u);
|
|
795
797
|
if (m == null)
|
|
796
798
|
return m;
|
|
797
799
|
if (h) {
|
|
@@ -800,27 +802,27 @@ Check the top-level render call using <` + n + ">.");
|
|
|
800
802
|
if (i)
|
|
801
803
|
if (o3(B)) {
|
|
802
804
|
for (var $ = 0; $ < B.length; $++)
|
|
803
|
-
T3(B[$],
|
|
805
|
+
T3(B[$], s);
|
|
804
806
|
Object.freeze && Object.freeze(B);
|
|
805
807
|
} else
|
|
806
|
-
|
|
808
|
+
y("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
|
807
809
|
else
|
|
808
|
-
T3(B,
|
|
810
|
+
T3(B, s);
|
|
809
811
|
}
|
|
810
|
-
return
|
|
812
|
+
return s === l ? b1(m) : S1(m), m;
|
|
811
813
|
}
|
|
812
814
|
}
|
|
813
|
-
function y1(
|
|
814
|
-
return P3(
|
|
815
|
+
function y1(s, o, n) {
|
|
816
|
+
return P3(s, o, n, !0);
|
|
815
817
|
}
|
|
816
|
-
function I1(
|
|
817
|
-
return P3(
|
|
818
|
+
function I1(s, o, n) {
|
|
819
|
+
return P3(s, o, n, !1);
|
|
818
820
|
}
|
|
819
821
|
var R1 = I1, E1 = y1;
|
|
820
|
-
|
|
821
|
-
}()),
|
|
822
|
+
H.Fragment = l, H.jsx = R1, H.jsxs = E1;
|
|
823
|
+
}()), H;
|
|
822
824
|
}
|
|
823
|
-
var
|
|
825
|
+
var q = {};
|
|
824
826
|
/**
|
|
825
827
|
* @license React
|
|
826
828
|
* react-jsx-runtime.production.min.js
|
|
@@ -830,74 +832,74 @@ var Y = {};
|
|
|
830
832
|
* This source code is licensed under the MIT license found in the
|
|
831
833
|
* LICENSE file in the root directory of this source tree.
|
|
832
834
|
*/
|
|
833
|
-
var
|
|
835
|
+
var V3;
|
|
834
836
|
function n2() {
|
|
835
|
-
if (
|
|
836
|
-
return
|
|
837
|
-
|
|
838
|
-
var
|
|
839
|
-
function C
|
|
840
|
-
var Z,
|
|
841
|
-
|
|
837
|
+
if (V3)
|
|
838
|
+
return q;
|
|
839
|
+
V3 = 1;
|
|
840
|
+
var c = U3, r = Symbol.for("react.element"), t = Symbol.for("react.fragment"), l = Object.prototype.hasOwnProperty, w = c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, j = { key: !0, ref: !0, __self: !0, __source: !0 };
|
|
841
|
+
function S(C, g, R) {
|
|
842
|
+
var Z, b = {}, E = null, _ = null;
|
|
843
|
+
R !== void 0 && (E = "" + R), g.key !== void 0 && (E = "" + g.key), g.ref !== void 0 && (_ = g.ref);
|
|
842
844
|
for (Z in g)
|
|
843
|
-
l.call(g, Z) && !
|
|
844
|
-
if (
|
|
845
|
-
for (Z in g =
|
|
846
|
-
|
|
847
|
-
return { $$typeof: r, type:
|
|
845
|
+
l.call(g, Z) && !j.hasOwnProperty(Z) && (b[Z] = g[Z]);
|
|
846
|
+
if (C && C.defaultProps)
|
|
847
|
+
for (Z in g = C.defaultProps, g)
|
|
848
|
+
b[Z] === void 0 && (b[Z] = g[Z]);
|
|
849
|
+
return { $$typeof: r, type: C, key: E, ref: _, props: b, _owner: w.current };
|
|
848
850
|
}
|
|
849
|
-
return
|
|
851
|
+
return q.Fragment = t, q.jsx = S, q.jsxs = S, q;
|
|
850
852
|
}
|
|
851
|
-
process.env.NODE_ENV === "production" ?
|
|
852
|
-
var e =
|
|
853
|
+
process.env.NODE_ENV === "production" ? d3.exports = n2() : d3.exports = o2();
|
|
854
|
+
var e = d3.exports;
|
|
853
855
|
const l2 = () => /* @__PURE__ */ e.jsx(e.Fragment, { children: /* @__PURE__ */ e.jsxs("div", { className: "disconnected-message", children: [
|
|
854
856
|
/* @__PURE__ */ e.jsx("h1", { children: "Disconnected" }),
|
|
855
857
|
/* @__PURE__ */ e.jsx("p", { children: "Reconnecting..." })
|
|
856
858
|
] }) });
|
|
857
859
|
class i2 {
|
|
858
860
|
constructor() {
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
861
|
+
k(this, "uuid", "current-uuid");
|
|
862
|
+
k(this, "roomKey", "current-room-key");
|
|
863
|
+
k(this, "code", "current-code");
|
|
864
|
+
k(this, "expiry", "current-uuid-expires");
|
|
863
865
|
}
|
|
864
866
|
}
|
|
865
867
|
const $3 = new i2();
|
|
866
|
-
function a2(
|
|
867
|
-
return sessionStorage.getItem(
|
|
868
|
+
function a2(c) {
|
|
869
|
+
return sessionStorage.getItem(c) || "";
|
|
868
870
|
}
|
|
869
|
-
function h2(
|
|
870
|
-
sessionStorage.setItem(
|
|
871
|
+
function h2(c, r) {
|
|
872
|
+
sessionStorage.setItem(c, r);
|
|
871
873
|
}
|
|
872
874
|
const z3 = O1({
|
|
873
875
|
sendMessage: () => null
|
|
874
876
|
});
|
|
875
877
|
function v2() {
|
|
876
|
-
return
|
|
878
|
+
return k1(z3);
|
|
877
879
|
}
|
|
878
|
-
const
|
|
879
|
-
const [r, t] = r3(), l = e2(),
|
|
880
|
+
const d2 = ({ children: c }) => {
|
|
881
|
+
const [r, t] = r3(), l = e2(), w = r2(), j = c2(), S = t2(), C = N1(), g = V1(null), [R, Z] = r3(), b = O3(
|
|
880
882
|
async (_) => {
|
|
881
|
-
await v3.get(`${_}/ui/joinroom?token=${r}`).then((
|
|
882
|
-
|
|
883
|
-
}).catch((
|
|
884
|
-
console.log(
|
|
883
|
+
await v3.get(`${_}/ui/joinroom?token=${r}`).then((M) => {
|
|
884
|
+
M.status === 200 && M.data && P.dispatch(F.setRoomData(M.data));
|
|
885
|
+
}).catch((M) => {
|
|
886
|
+
console.log(M);
|
|
885
887
|
});
|
|
886
888
|
},
|
|
887
889
|
[r]
|
|
888
890
|
), E = O3(
|
|
889
|
-
(_,
|
|
890
|
-
g.current && l && g.current.send(JSON.stringify({ type: _, clientId:
|
|
891
|
+
(_, M) => {
|
|
892
|
+
g.current && l && g.current.send(JSON.stringify({ type: _, clientId: j, content: M }));
|
|
891
893
|
},
|
|
892
|
-
[l,
|
|
894
|
+
[l, j]
|
|
893
895
|
);
|
|
894
|
-
return
|
|
895
|
-
let
|
|
896
|
-
|
|
897
|
-
}, []),
|
|
898
|
-
if (!(!
|
|
899
|
-
if (
|
|
900
|
-
const
|
|
896
|
+
return G(() => {
|
|
897
|
+
let M = new URLSearchParams(window.location.search).get("token");
|
|
898
|
+
M ? (console.log("saving token: ", M), h2($3.uuid, M)) : (M = a2($3.uuid), console.log("loading token: ", M)), t(M), S();
|
|
899
|
+
}, []), G(() => {
|
|
900
|
+
if (!(!C.apiPath || R || !r)) {
|
|
901
|
+
if (b(C.apiPath), !g.current) {
|
|
902
|
+
const M = `${C.apiPath.replace("http", "ws")}/ui/join/${r}`, L = new WebSocket(M);
|
|
901
903
|
g.current = L, L.onopen = () => {
|
|
902
904
|
console.log("connected"), P.dispatch(F.setWebsocketIsConnected(!0));
|
|
903
905
|
}, L.onerror = (D) => {
|
|
@@ -909,29 +911,29 @@ const u2 = ({ children: s }) => {
|
|
|
909
911
|
console.log("WebSocket closed by client.");
|
|
910
912
|
return;
|
|
911
913
|
}
|
|
912
|
-
|
|
914
|
+
R || (P.dispatch(F.setWebsocketIsConnected(!1)), Z(!0), setTimeout(() => Z(void 0), 5e3));
|
|
913
915
|
}, L.onmessage = (D) => {
|
|
914
916
|
try {
|
|
915
|
-
const
|
|
916
|
-
if (console.log(
|
|
917
|
-
switch (
|
|
917
|
+
const x = JSON.parse(D.data);
|
|
918
|
+
if (console.log(x), x.type.startsWith("/system/"))
|
|
919
|
+
switch (x.type) {
|
|
918
920
|
case "/system/roomKey":
|
|
919
921
|
P.dispatch(
|
|
920
922
|
F.setCurrentRoomKey(
|
|
921
|
-
|
|
923
|
+
x.content
|
|
922
924
|
)
|
|
923
925
|
);
|
|
924
926
|
break;
|
|
925
927
|
case "/system/userCodeChanged":
|
|
926
928
|
P.dispatch(
|
|
927
|
-
F.setUserCode(
|
|
929
|
+
F.setUserCode(x.content)
|
|
928
930
|
);
|
|
929
931
|
break;
|
|
930
932
|
}
|
|
931
933
|
else
|
|
932
|
-
|
|
933
|
-
} catch (
|
|
934
|
-
console.log(
|
|
934
|
+
x.type.startsWith("/room/") ? P.dispatch(G1.setRoomState(x)) : x.type.startsWith("/device/") && P.dispatch(H1.setDeviceState(x));
|
|
935
|
+
} catch (x) {
|
|
936
|
+
console.log(x);
|
|
935
937
|
}
|
|
936
938
|
};
|
|
937
939
|
}
|
|
@@ -939,87 +941,87 @@ const u2 = ({ children: s }) => {
|
|
|
939
941
|
g.current && g.current.close(), g.current = null;
|
|
940
942
|
};
|
|
941
943
|
}
|
|
942
|
-
}, [
|
|
943
|
-
|
|
944
|
-
}, [
|
|
945
|
-
},
|
|
944
|
+
}, [C.apiPath, b, r, R]), G(() => {
|
|
945
|
+
w && E(`/room/${w}/status`, null);
|
|
946
|
+
}, [w, E]), /* @__PURE__ */ e.jsx(z3.Provider, { value: { sendMessage: E }, children: l ? c : /* @__PURE__ */ e.jsx(l2, {}) });
|
|
947
|
+
}, E8 = ({ children: c }) => /* @__PURE__ */ e.jsx(D1, { store: P, children: /* @__PURE__ */ e.jsx(d2, { children: c }) }), _8 = ({ config: c }) => {
|
|
946
948
|
const { sendMessage: r } = v2();
|
|
947
|
-
|
|
948
|
-
if (!
|
|
949
|
+
G(() => {
|
|
950
|
+
if (!c)
|
|
949
951
|
return;
|
|
950
952
|
const t = [];
|
|
951
|
-
|
|
953
|
+
c.displayKeys.forEach((l) => {
|
|
952
954
|
t.push(l);
|
|
953
|
-
}),
|
|
955
|
+
}), c.environmentalDevices.forEach((l) => {
|
|
954
956
|
t.push(l);
|
|
955
|
-
}),
|
|
956
|
-
for (const [l,
|
|
957
|
-
t.push(
|
|
957
|
+
}), c.audioCodecKey && t.push(c.audioCodecKey), c.videoCodecKey && t.push(c.videoCodecKey);
|
|
958
|
+
for (const [l, w] of Object.entries(c.sourceList))
|
|
959
|
+
t.push(w.sourceKey);
|
|
958
960
|
t.forEach((l) => {
|
|
959
961
|
r(`/device/${l}/fullStatus`, { deviceKey: l });
|
|
960
962
|
});
|
|
961
|
-
}, [
|
|
962
|
-
},
|
|
963
|
-
iconbtn:
|
|
963
|
+
}, [c, r]);
|
|
964
|
+
}, B8 = () => /* @__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." }) }), u2 = "_iconbtn_16qss_1", g2 = "_iconbtnvert_16qss_7", w2 = "_iconsm_16qss_18", h3 = {
|
|
965
|
+
iconbtn: u2,
|
|
964
966
|
iconbtnvert: g2,
|
|
965
967
|
iconsm: w2
|
|
966
968
|
}, x2 = ({
|
|
967
|
-
multiIcon:
|
|
969
|
+
multiIcon: c,
|
|
968
970
|
otherContent: r = null,
|
|
969
971
|
vert: t = !1,
|
|
970
972
|
className: l,
|
|
971
|
-
iconClassName:
|
|
972
|
-
otherContentClassName:
|
|
973
|
-
disabled:
|
|
974
|
-
feedback:
|
|
973
|
+
iconClassName: w = "",
|
|
974
|
+
otherContentClassName: j = "",
|
|
975
|
+
disabled: S,
|
|
976
|
+
feedback: C,
|
|
975
977
|
feedbackClassName: g,
|
|
976
|
-
onPointerDown:
|
|
978
|
+
onPointerDown: R,
|
|
977
979
|
onPointerUp: Z,
|
|
978
|
-
onPointerLeave:
|
|
980
|
+
onPointerLeave: b,
|
|
979
981
|
...E
|
|
980
982
|
}) => {
|
|
981
|
-
const [_,
|
|
983
|
+
const [_, M] = r3(!1), L = !S && C ? g : "", D = !S && (_ || C);
|
|
982
984
|
return /* @__PURE__ */ e.jsxs(
|
|
983
985
|
"button",
|
|
984
986
|
{
|
|
985
987
|
type: "button",
|
|
986
988
|
className: `${h3.iconbtn} ${t ? h3.iconbtnvert : ""} ${l} ${L}`,
|
|
987
989
|
...E,
|
|
988
|
-
disabled:
|
|
989
|
-
onPointerDown: (
|
|
990
|
-
|
|
990
|
+
disabled: S,
|
|
991
|
+
onPointerDown: (x) => {
|
|
992
|
+
M(!0), R == null || R(x);
|
|
991
993
|
},
|
|
992
|
-
onPointerUp: (
|
|
993
|
-
|
|
994
|
+
onPointerUp: (x) => {
|
|
995
|
+
M(!1), Z == null || Z(x);
|
|
994
996
|
},
|
|
995
|
-
onPointerLeave: (
|
|
996
|
-
|
|
997
|
+
onPointerLeave: (x) => {
|
|
998
|
+
M(!1), b == null || b(x);
|
|
997
999
|
},
|
|
998
1000
|
children: [
|
|
999
1001
|
/* @__PURE__ */ e.jsx(
|
|
1000
|
-
|
|
1002
|
+
c,
|
|
1001
1003
|
{
|
|
1002
|
-
className: `${
|
|
1004
|
+
className: `${w || h3.iconsm}`,
|
|
1003
1005
|
active: D,
|
|
1004
|
-
disabled:
|
|
1006
|
+
disabled: S
|
|
1005
1007
|
}
|
|
1006
1008
|
),
|
|
1007
|
-
/* @__PURE__ */ e.jsx("div", { className:
|
|
1009
|
+
/* @__PURE__ */ e.jsx("div", { className: j, children: r })
|
|
1008
1010
|
]
|
|
1009
1011
|
}
|
|
1010
1012
|
);
|
|
1011
|
-
},
|
|
1012
|
-
ActiveImage:
|
|
1013
|
+
}, d = ({
|
|
1014
|
+
ActiveImage: c,
|
|
1013
1015
|
DisabledImage: r,
|
|
1014
1016
|
EnabledImage: t,
|
|
1015
1017
|
active: l,
|
|
1016
|
-
disabled:
|
|
1017
|
-
}) =>
|
|
1018
|
-
active:
|
|
1018
|
+
disabled: w
|
|
1019
|
+
}) => w ? r : l ? c : t, f2 = ({
|
|
1020
|
+
active: c,
|
|
1019
1021
|
className: r = "",
|
|
1020
1022
|
disabled: t
|
|
1021
1023
|
}) => /* @__PURE__ */ e.jsx(
|
|
1022
|
-
|
|
1024
|
+
d,
|
|
1023
1025
|
{
|
|
1024
1026
|
ActiveImage: (
|
|
1025
1027
|
/* icon-mic-active.svg */
|
|
@@ -1060,15 +1062,15 @@ const u2 = ({ children: s }) => {
|
|
|
1060
1062
|
}
|
|
1061
1063
|
)
|
|
1062
1064
|
),
|
|
1063
|
-
active:
|
|
1065
|
+
active: c,
|
|
1064
1066
|
disabled: t
|
|
1065
1067
|
}
|
|
1066
1068
|
), M2 = ({
|
|
1067
|
-
active:
|
|
1069
|
+
active: c,
|
|
1068
1070
|
className: r = "",
|
|
1069
1071
|
disabled: t
|
|
1070
1072
|
}) => /* @__PURE__ */ e.jsx(
|
|
1071
|
-
|
|
1073
|
+
d,
|
|
1072
1074
|
{
|
|
1073
1075
|
ActiveImage: /* @__PURE__ */ e.jsx(
|
|
1074
1076
|
"svg",
|
|
@@ -1112,15 +1114,15 @@ const u2 = ({ children: s }) => {
|
|
|
1112
1114
|
) })
|
|
1113
1115
|
}
|
|
1114
1116
|
),
|
|
1115
|
-
active:
|
|
1117
|
+
active: c,
|
|
1116
1118
|
disabled: t
|
|
1117
1119
|
}
|
|
1118
1120
|
), p2 = ({
|
|
1119
|
-
active:
|
|
1121
|
+
active: c,
|
|
1120
1122
|
className: r = "",
|
|
1121
1123
|
disabled: t
|
|
1122
1124
|
}) => /* @__PURE__ */ e.jsx(
|
|
1123
|
-
|
|
1125
|
+
d,
|
|
1124
1126
|
{
|
|
1125
1127
|
ActiveImage: (
|
|
1126
1128
|
/* icon-ban-active.svg */
|
|
@@ -1161,15 +1163,15 @@ const u2 = ({ children: s }) => {
|
|
|
1161
1163
|
}
|
|
1162
1164
|
)
|
|
1163
1165
|
),
|
|
1164
|
-
active:
|
|
1166
|
+
active: c,
|
|
1165
1167
|
disabled: t
|
|
1166
1168
|
}
|
|
1167
1169
|
), Z2 = ({
|
|
1168
|
-
active:
|
|
1170
|
+
active: c,
|
|
1169
1171
|
className: r = "",
|
|
1170
1172
|
disabled: t
|
|
1171
1173
|
}) => /* @__PURE__ */ e.jsx(
|
|
1172
|
-
|
|
1174
|
+
d,
|
|
1173
1175
|
{
|
|
1174
1176
|
ActiveImage: /* @__PURE__ */ e.jsx(
|
|
1175
1177
|
"svg",
|
|
@@ -1201,15 +1203,15 @@ const u2 = ({ children: s }) => {
|
|
|
1201
1203
|
children: /* @__PURE__ */ e.jsx("g", { children: /* @__PURE__ */ e.jsx("path", { d: "M82.3,164.61C36.92,164.61,0,127.69,0,82.3S36.92,0,82.3,0s82.3,36.92,82.3,82.3-36.92,82.3-82.3,82.3ZM82.3,5C39.68,5,5,39.68,5,82.3s34.68,77.3,77.3,77.3,77.3-34.68,77.3-77.3S124.93,5,82.3,5ZM99.38,108.04h-59.68c-4.58,0-8.3-3.71-8.3-8.3v-43.17h59.43c4.72,0,8.55,3.83,8.55,8.55v42.92ZM133.2,106.05v-47.49c0-2.29-2.58-3.63-4.46-2.31l-22.73,16.02c-.75.53-1.2,1.39-1.2,2.31v15.45c0,.92.45,1.78,1.2,2.31l22.73,16.02c1.87,1.32,4.46-.02,4.46-2.31Z" }) })
|
|
1202
1204
|
}
|
|
1203
1205
|
),
|
|
1204
|
-
active:
|
|
1206
|
+
active: c,
|
|
1205
1207
|
disabled: t
|
|
1206
1208
|
}
|
|
1207
1209
|
), m2 = ({
|
|
1208
|
-
active:
|
|
1210
|
+
active: c,
|
|
1209
1211
|
className: r = "",
|
|
1210
1212
|
disabled: t
|
|
1211
1213
|
}) => /* @__PURE__ */ e.jsx(
|
|
1212
|
-
|
|
1214
|
+
d,
|
|
1213
1215
|
{
|
|
1214
1216
|
ActiveImage: (
|
|
1215
1217
|
/* icon-check-active.svg */
|
|
@@ -1250,15 +1252,15 @@ const u2 = ({ children: s }) => {
|
|
|
1250
1252
|
}
|
|
1251
1253
|
)
|
|
1252
1254
|
),
|
|
1253
|
-
active:
|
|
1255
|
+
active: c,
|
|
1254
1256
|
disabled: t
|
|
1255
1257
|
}
|
|
1256
1258
|
), j2 = ({
|
|
1257
|
-
active:
|
|
1259
|
+
active: c,
|
|
1258
1260
|
className: r = "",
|
|
1259
1261
|
disabled: t
|
|
1260
1262
|
}) => /* @__PURE__ */ e.jsx(
|
|
1261
|
-
|
|
1263
|
+
d,
|
|
1262
1264
|
{
|
|
1263
1265
|
ActiveImage: (
|
|
1264
1266
|
/* icon-down-active.svg */
|
|
@@ -1299,15 +1301,15 @@ const u2 = ({ children: s }) => {
|
|
|
1299
1301
|
}
|
|
1300
1302
|
)
|
|
1301
1303
|
),
|
|
1302
|
-
active:
|
|
1304
|
+
active: c,
|
|
1303
1305
|
disabled: t
|
|
1304
1306
|
}
|
|
1305
1307
|
), C2 = ({
|
|
1306
|
-
active:
|
|
1308
|
+
active: c,
|
|
1307
1309
|
className: r = "",
|
|
1308
1310
|
disabled: t
|
|
1309
1311
|
}) => /* @__PURE__ */ e.jsx(
|
|
1310
|
-
|
|
1312
|
+
d,
|
|
1311
1313
|
{
|
|
1312
1314
|
ActiveImage: (
|
|
1313
1315
|
/* icon-elipses-active.svg */
|
|
@@ -1348,15 +1350,15 @@ const u2 = ({ children: s }) => {
|
|
|
1348
1350
|
}
|
|
1349
1351
|
)
|
|
1350
1352
|
),
|
|
1351
|
-
active:
|
|
1353
|
+
active: c,
|
|
1352
1354
|
disabled: t
|
|
1353
1355
|
}
|
|
1354
1356
|
), S2 = ({
|
|
1355
|
-
active:
|
|
1357
|
+
active: c,
|
|
1356
1358
|
className: r = "",
|
|
1357
1359
|
disabled: t
|
|
1358
1360
|
}) => /* @__PURE__ */ e.jsx(
|
|
1359
|
-
|
|
1361
|
+
d,
|
|
1360
1362
|
{
|
|
1361
1363
|
ActiveImage: (
|
|
1362
1364
|
/* icon-flag-active.svg */
|
|
@@ -1397,15 +1399,15 @@ const u2 = ({ children: s }) => {
|
|
|
1397
1399
|
}
|
|
1398
1400
|
)
|
|
1399
1401
|
),
|
|
1400
|
-
active:
|
|
1402
|
+
active: c,
|
|
1401
1403
|
disabled: t
|
|
1402
1404
|
}
|
|
1403
1405
|
), b2 = ({
|
|
1404
|
-
active:
|
|
1406
|
+
active: c,
|
|
1405
1407
|
className: r = "",
|
|
1406
1408
|
disabled: t
|
|
1407
1409
|
}) => /* @__PURE__ */ e.jsx(
|
|
1408
|
-
|
|
1410
|
+
d,
|
|
1409
1411
|
{
|
|
1410
1412
|
ActiveImage: (
|
|
1411
1413
|
/* /Users/hvolmer/Downloads/SVG/icon-gear-active.svg */
|
|
@@ -1446,15 +1448,15 @@ const u2 = ({ children: s }) => {
|
|
|
1446
1448
|
}
|
|
1447
1449
|
)
|
|
1448
1450
|
),
|
|
1449
|
-
active:
|
|
1451
|
+
active: c,
|
|
1450
1452
|
disabled: t
|
|
1451
1453
|
}
|
|
1452
1454
|
), y2 = ({
|
|
1453
|
-
active:
|
|
1455
|
+
active: c,
|
|
1454
1456
|
className: r = "",
|
|
1455
1457
|
disabled: t
|
|
1456
1458
|
}) => /* @__PURE__ */ e.jsx(
|
|
1457
|
-
|
|
1459
|
+
d,
|
|
1458
1460
|
{
|
|
1459
1461
|
ActiveImage: (
|
|
1460
1462
|
/* icon-glass-active.svg */
|
|
@@ -1495,15 +1497,84 @@ const u2 = ({ children: s }) => {
|
|
|
1495
1497
|
}
|
|
1496
1498
|
)
|
|
1497
1499
|
),
|
|
1498
|
-
active:
|
|
1500
|
+
active: c,
|
|
1499
1501
|
disabled: t
|
|
1500
1502
|
}
|
|
1501
1503
|
), I2 = ({
|
|
1502
|
-
active:
|
|
1504
|
+
active: c,
|
|
1505
|
+
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
1506
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1507
|
+
className: r = "",
|
|
1508
|
+
disabled: t
|
|
1509
|
+
}) => /* @__PURE__ */ e.jsx(
|
|
1510
|
+
d,
|
|
1511
|
+
{
|
|
1512
|
+
ActiveImage: (
|
|
1513
|
+
/* icon-hdmi-active.svg */
|
|
1514
|
+
/* @__PURE__ */ e.jsx(
|
|
1515
|
+
"svg",
|
|
1516
|
+
{
|
|
1517
|
+
className: r,
|
|
1518
|
+
fill: "currentcolor",
|
|
1519
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1520
|
+
viewBox: "0 0 164.61 164.61",
|
|
1521
|
+
children: /* @__PURE__ */ e.jsx("g", { children: /* @__PURE__ */ e.jsx(
|
|
1522
|
+
"path",
|
|
1523
|
+
{
|
|
1524
|
+
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
|
+
"stroke-width": "0"
|
|
1526
|
+
}
|
|
1527
|
+
) })
|
|
1528
|
+
}
|
|
1529
|
+
)
|
|
1530
|
+
),
|
|
1531
|
+
DisabledImage: (
|
|
1532
|
+
/* icon-hdmi-disabled.svg */
|
|
1533
|
+
/* @__PURE__ */ e.jsx(
|
|
1534
|
+
"svg",
|
|
1535
|
+
{
|
|
1536
|
+
className: r,
|
|
1537
|
+
fill: "currentcolor",
|
|
1538
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1539
|
+
viewBox: "0 0 164.61 164.61",
|
|
1540
|
+
children: /* @__PURE__ */ e.jsx("g", { children: /* @__PURE__ */ e.jsx(
|
|
1541
|
+
"path",
|
|
1542
|
+
{
|
|
1543
|
+
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
|
+
"stroke-width": "0"
|
|
1545
|
+
}
|
|
1546
|
+
) })
|
|
1547
|
+
}
|
|
1548
|
+
)
|
|
1549
|
+
),
|
|
1550
|
+
EnabledImage: (
|
|
1551
|
+
/* icon-hdmi-enabled.svg */
|
|
1552
|
+
/* @__PURE__ */ e.jsx(
|
|
1553
|
+
"svg",
|
|
1554
|
+
{
|
|
1555
|
+
className: r,
|
|
1556
|
+
fill: "currentcolor",
|
|
1557
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1558
|
+
viewBox: "0 0 164.61 164.61",
|
|
1559
|
+
children: /* @__PURE__ */ e.jsx("g", { children: /* @__PURE__ */ e.jsx(
|
|
1560
|
+
"path",
|
|
1561
|
+
{
|
|
1562
|
+
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
|
+
"stroke-width": "0"
|
|
1564
|
+
}
|
|
1565
|
+
) })
|
|
1566
|
+
}
|
|
1567
|
+
)
|
|
1568
|
+
),
|
|
1569
|
+
active: c,
|
|
1570
|
+
disabled: t
|
|
1571
|
+
}
|
|
1572
|
+
), R2 = ({
|
|
1573
|
+
active: c,
|
|
1503
1574
|
className: r = "",
|
|
1504
1575
|
disabled: t
|
|
1505
1576
|
}) => /* @__PURE__ */ e.jsx(
|
|
1506
|
-
|
|
1577
|
+
d,
|
|
1507
1578
|
{
|
|
1508
1579
|
ActiveImage: (
|
|
1509
1580
|
/* icon-laptop-active.svg */
|
|
@@ -1544,15 +1615,15 @@ const u2 = ({ children: s }) => {
|
|
|
1544
1615
|
}
|
|
1545
1616
|
)
|
|
1546
1617
|
),
|
|
1547
|
-
active:
|
|
1618
|
+
active: c,
|
|
1548
1619
|
disabled: t
|
|
1549
1620
|
}
|
|
1550
|
-
),
|
|
1551
|
-
active:
|
|
1621
|
+
), E2 = ({
|
|
1622
|
+
active: c,
|
|
1552
1623
|
className: r = "",
|
|
1553
1624
|
disabled: t
|
|
1554
1625
|
}) => /* @__PURE__ */ e.jsx(
|
|
1555
|
-
|
|
1626
|
+
d,
|
|
1556
1627
|
{
|
|
1557
1628
|
ActiveImage: (
|
|
1558
1629
|
/* icon-left-active.svg */
|
|
@@ -1593,15 +1664,15 @@ const u2 = ({ children: s }) => {
|
|
|
1593
1664
|
}
|
|
1594
1665
|
)
|
|
1595
1666
|
),
|
|
1596
|
-
active:
|
|
1667
|
+
active: c,
|
|
1597
1668
|
disabled: t
|
|
1598
1669
|
}
|
|
1599
|
-
),
|
|
1600
|
-
active:
|
|
1670
|
+
), _2 = ({
|
|
1671
|
+
active: c,
|
|
1601
1672
|
className: r = "",
|
|
1602
1673
|
disabled: t
|
|
1603
1674
|
}) => /* @__PURE__ */ e.jsx(
|
|
1604
|
-
|
|
1675
|
+
d,
|
|
1605
1676
|
{
|
|
1606
1677
|
ActiveImage: (
|
|
1607
1678
|
/* icon-light-active.svg */
|
|
@@ -1642,15 +1713,15 @@ const u2 = ({ children: s }) => {
|
|
|
1642
1713
|
}
|
|
1643
1714
|
)
|
|
1644
1715
|
),
|
|
1645
|
-
active:
|
|
1716
|
+
active: c,
|
|
1646
1717
|
disabled: t
|
|
1647
1718
|
}
|
|
1648
|
-
),
|
|
1649
|
-
active:
|
|
1719
|
+
), B2 = ({
|
|
1720
|
+
active: c,
|
|
1650
1721
|
className: r = "",
|
|
1651
1722
|
disabled: t
|
|
1652
1723
|
}) => /* @__PURE__ */ e.jsx(
|
|
1653
|
-
|
|
1724
|
+
d,
|
|
1654
1725
|
{
|
|
1655
1726
|
ActiveImage: (
|
|
1656
1727
|
/* icon-moon-active.svg */
|
|
@@ -1691,15 +1762,15 @@ const u2 = ({ children: s }) => {
|
|
|
1691
1762
|
}
|
|
1692
1763
|
)
|
|
1693
1764
|
),
|
|
1694
|
-
active:
|
|
1765
|
+
active: c,
|
|
1695
1766
|
disabled: t
|
|
1696
1767
|
}
|
|
1697
|
-
),
|
|
1698
|
-
active:
|
|
1768
|
+
), L2 = ({
|
|
1769
|
+
active: c,
|
|
1699
1770
|
className: r = "",
|
|
1700
1771
|
disabled: t
|
|
1701
1772
|
}) => /* @__PURE__ */ e.jsx(
|
|
1702
|
-
|
|
1773
|
+
d,
|
|
1703
1774
|
{
|
|
1704
1775
|
ActiveImage: (
|
|
1705
1776
|
/* icon-playstation-active.svg */
|
|
@@ -1713,15 +1784,15 @@ const u2 = ({ children: s }) => {
|
|
|
1713
1784
|
/* icon-playstation-enabled.svg */
|
|
1714
1785
|
/* @__PURE__ */ e.jsx("svg", { className: r, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ e.jsx("g", { children: /* @__PURE__ */ e.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" }) }) })
|
|
1715
1786
|
),
|
|
1716
|
-
active:
|
|
1787
|
+
active: c,
|
|
1717
1788
|
disabled: t
|
|
1718
1789
|
}
|
|
1719
|
-
),
|
|
1720
|
-
active:
|
|
1790
|
+
), A2 = ({
|
|
1791
|
+
active: c,
|
|
1721
1792
|
className: r = "",
|
|
1722
1793
|
disabled: t
|
|
1723
1794
|
}) => /* @__PURE__ */ e.jsx(
|
|
1724
|
-
|
|
1795
|
+
d,
|
|
1725
1796
|
{
|
|
1726
1797
|
ActiveImage: (
|
|
1727
1798
|
/* icon-podium-active.svg */
|
|
@@ -1762,15 +1833,15 @@ const u2 = ({ children: s }) => {
|
|
|
1762
1833
|
}
|
|
1763
1834
|
)
|
|
1764
1835
|
),
|
|
1765
|
-
active:
|
|
1836
|
+
active: c,
|
|
1766
1837
|
disabled: t
|
|
1767
1838
|
}
|
|
1768
|
-
),
|
|
1769
|
-
active:
|
|
1839
|
+
), T2 = ({
|
|
1840
|
+
active: c,
|
|
1770
1841
|
className: r = "",
|
|
1771
1842
|
disabled: t
|
|
1772
1843
|
}) => /* @__PURE__ */ e.jsx(
|
|
1773
|
-
|
|
1844
|
+
d,
|
|
1774
1845
|
{
|
|
1775
1846
|
ActiveImage: (
|
|
1776
1847
|
/* icon-power-active.svg */
|
|
@@ -1811,15 +1882,15 @@ const u2 = ({ children: s }) => {
|
|
|
1811
1882
|
}
|
|
1812
1883
|
)
|
|
1813
1884
|
),
|
|
1814
|
-
active:
|
|
1885
|
+
active: c,
|
|
1815
1886
|
disabled: t
|
|
1816
1887
|
}
|
|
1817
|
-
),
|
|
1818
|
-
active:
|
|
1888
|
+
), P2 = ({
|
|
1889
|
+
active: c,
|
|
1819
1890
|
className: r = "",
|
|
1820
1891
|
disabled: t
|
|
1821
1892
|
}) => /* @__PURE__ */ e.jsx(
|
|
1822
|
-
|
|
1893
|
+
d,
|
|
1823
1894
|
{
|
|
1824
1895
|
ActiveImage: (
|
|
1825
1896
|
/* icon-privacy-active.svg */
|
|
@@ -1860,15 +1931,15 @@ const u2 = ({ children: s }) => {
|
|
|
1860
1931
|
}
|
|
1861
1932
|
)
|
|
1862
1933
|
),
|
|
1863
|
-
active:
|
|
1934
|
+
active: c,
|
|
1864
1935
|
disabled: t
|
|
1865
1936
|
}
|
|
1866
|
-
),
|
|
1867
|
-
active:
|
|
1937
|
+
), D2 = ({
|
|
1938
|
+
active: c,
|
|
1868
1939
|
className: r = "",
|
|
1869
1940
|
disabled: t
|
|
1870
1941
|
}) => /* @__PURE__ */ e.jsx(
|
|
1871
|
-
|
|
1942
|
+
d,
|
|
1872
1943
|
{
|
|
1873
1944
|
ActiveImage: (
|
|
1874
1945
|
/* icon-question-active.svg */
|
|
@@ -1909,15 +1980,15 @@ const u2 = ({ children: s }) => {
|
|
|
1909
1980
|
}
|
|
1910
1981
|
)
|
|
1911
1982
|
),
|
|
1912
|
-
active:
|
|
1983
|
+
active: c,
|
|
1913
1984
|
disabled: t
|
|
1914
1985
|
}
|
|
1915
|
-
),
|
|
1916
|
-
active:
|
|
1986
|
+
), O2 = ({
|
|
1987
|
+
active: c,
|
|
1917
1988
|
className: r = "",
|
|
1918
1989
|
disabled: t
|
|
1919
1990
|
}) => /* @__PURE__ */ e.jsx(
|
|
1920
|
-
|
|
1991
|
+
d,
|
|
1921
1992
|
{
|
|
1922
1993
|
ActiveImage: (
|
|
1923
1994
|
/* icon-right-active.svg */
|
|
@@ -1958,15 +2029,15 @@ const u2 = ({ children: s }) => {
|
|
|
1958
2029
|
}
|
|
1959
2030
|
)
|
|
1960
2031
|
),
|
|
1961
|
-
active:
|
|
2032
|
+
active: c,
|
|
1962
2033
|
disabled: t
|
|
1963
2034
|
}
|
|
1964
|
-
),
|
|
1965
|
-
active:
|
|
2035
|
+
), k2 = ({
|
|
2036
|
+
active: c,
|
|
1966
2037
|
className: r = "",
|
|
1967
2038
|
disabled: t
|
|
1968
2039
|
}) => /* @__PURE__ */ e.jsx(
|
|
1969
|
-
|
|
2040
|
+
d,
|
|
1970
2041
|
{
|
|
1971
2042
|
ActiveImage: (
|
|
1972
2043
|
/* icon-shade-active.svg */
|
|
@@ -2007,15 +2078,15 @@ const u2 = ({ children: s }) => {
|
|
|
2007
2078
|
}
|
|
2008
2079
|
)
|
|
2009
2080
|
),
|
|
2010
|
-
active:
|
|
2081
|
+
active: c,
|
|
2011
2082
|
disabled: t
|
|
2012
2083
|
}
|
|
2013
2084
|
), V2 = ({
|
|
2014
|
-
active:
|
|
2085
|
+
active: c,
|
|
2015
2086
|
className: r = "",
|
|
2016
2087
|
disabled: t
|
|
2017
2088
|
}) => /* @__PURE__ */ e.jsx(
|
|
2018
|
-
|
|
2089
|
+
d,
|
|
2019
2090
|
{
|
|
2020
2091
|
ActiveImage: (
|
|
2021
2092
|
/* icon-sun-active.svg */
|
|
@@ -2056,15 +2127,15 @@ const u2 = ({ children: s }) => {
|
|
|
2056
2127
|
}
|
|
2057
2128
|
)
|
|
2058
2129
|
),
|
|
2059
|
-
active:
|
|
2130
|
+
active: c,
|
|
2060
2131
|
disabled: t
|
|
2061
2132
|
}
|
|
2062
|
-
),
|
|
2063
|
-
active:
|
|
2133
|
+
), $2 = ({
|
|
2134
|
+
active: c,
|
|
2064
2135
|
className: r = "",
|
|
2065
2136
|
disabled: t
|
|
2066
2137
|
}) => /* @__PURE__ */ e.jsx(
|
|
2067
|
-
|
|
2138
|
+
d,
|
|
2068
2139
|
{
|
|
2069
2140
|
ActiveImage: (
|
|
2070
2141
|
/* icon-up-active.svg */
|
|
@@ -2105,15 +2176,15 @@ const u2 = ({ children: s }) => {
|
|
|
2105
2176
|
}
|
|
2106
2177
|
)
|
|
2107
2178
|
),
|
|
2108
|
-
active:
|
|
2179
|
+
active: c,
|
|
2109
2180
|
disabled: t
|
|
2110
2181
|
}
|
|
2111
|
-
),
|
|
2112
|
-
active:
|
|
2182
|
+
), F2 = ({
|
|
2183
|
+
active: c,
|
|
2113
2184
|
className: r = "",
|
|
2114
2185
|
disabled: t
|
|
2115
2186
|
}) => /* @__PURE__ */ e.jsx(
|
|
2116
|
-
|
|
2187
|
+
d,
|
|
2117
2188
|
{
|
|
2118
2189
|
ActiveImage: (
|
|
2119
2190
|
/* icon-volDown-active.svg */
|
|
@@ -2154,15 +2225,15 @@ const u2 = ({ children: s }) => {
|
|
|
2154
2225
|
}
|
|
2155
2226
|
)
|
|
2156
2227
|
),
|
|
2157
|
-
active:
|
|
2228
|
+
active: c,
|
|
2158
2229
|
disabled: t
|
|
2159
2230
|
}
|
|
2160
|
-
),
|
|
2161
|
-
active:
|
|
2231
|
+
), W2 = ({
|
|
2232
|
+
active: c,
|
|
2162
2233
|
className: r = "",
|
|
2163
2234
|
disabled: t
|
|
2164
2235
|
}) => /* @__PURE__ */ e.jsx(
|
|
2165
|
-
|
|
2236
|
+
d,
|
|
2166
2237
|
{
|
|
2167
2238
|
ActiveImage: (
|
|
2168
2239
|
/* icon-volMute-active.svg */
|
|
@@ -2203,15 +2274,15 @@ const u2 = ({ children: s }) => {
|
|
|
2203
2274
|
}
|
|
2204
2275
|
)
|
|
2205
2276
|
),
|
|
2206
|
-
active:
|
|
2277
|
+
active: c,
|
|
2207
2278
|
disabled: t
|
|
2208
2279
|
}
|
|
2209
|
-
),
|
|
2210
|
-
active:
|
|
2280
|
+
), U2 = ({
|
|
2281
|
+
active: c,
|
|
2211
2282
|
className: r = "",
|
|
2212
2283
|
disabled: t
|
|
2213
2284
|
}) => /* @__PURE__ */ e.jsx(
|
|
2214
|
-
|
|
2285
|
+
d,
|
|
2215
2286
|
{
|
|
2216
2287
|
ActiveImage: (
|
|
2217
2288
|
/* icon-volUp-active.svg */
|
|
@@ -2252,15 +2323,15 @@ const u2 = ({ children: s }) => {
|
|
|
2252
2323
|
}
|
|
2253
2324
|
)
|
|
2254
2325
|
),
|
|
2255
|
-
active:
|
|
2326
|
+
active: c,
|
|
2256
2327
|
disabled: t
|
|
2257
2328
|
}
|
|
2258
|
-
),
|
|
2259
|
-
active:
|
|
2329
|
+
), H2 = ({
|
|
2330
|
+
active: c,
|
|
2260
2331
|
className: r = "",
|
|
2261
2332
|
disabled: t
|
|
2262
2333
|
}) => /* @__PURE__ */ e.jsx(
|
|
2263
|
-
|
|
2334
|
+
d,
|
|
2264
2335
|
{
|
|
2265
2336
|
ActiveImage: (
|
|
2266
2337
|
/* icon-wireless-active.svg */
|
|
@@ -2301,15 +2372,15 @@ const u2 = ({ children: s }) => {
|
|
|
2301
2372
|
}
|
|
2302
2373
|
)
|
|
2303
2374
|
),
|
|
2304
|
-
active:
|
|
2375
|
+
active: c,
|
|
2305
2376
|
disabled: t
|
|
2306
2377
|
}
|
|
2307
2378
|
), q2 = ({
|
|
2308
|
-
active:
|
|
2379
|
+
active: c,
|
|
2309
2380
|
className: r = "",
|
|
2310
2381
|
disabled: t
|
|
2311
2382
|
}) => /* @__PURE__ */ e.jsx(
|
|
2312
|
-
|
|
2383
|
+
d,
|
|
2313
2384
|
{
|
|
2314
2385
|
ActiveImage: (
|
|
2315
2386
|
/* icon-x-active.svg */
|
|
@@ -2350,15 +2421,15 @@ const u2 = ({ children: s }) => {
|
|
|
2350
2421
|
}
|
|
2351
2422
|
)
|
|
2352
2423
|
),
|
|
2353
|
-
active:
|
|
2424
|
+
active: c,
|
|
2354
2425
|
disabled: t
|
|
2355
2426
|
}
|
|
2356
2427
|
), Y2 = ({
|
|
2357
|
-
active:
|
|
2428
|
+
active: c,
|
|
2358
2429
|
className: r = "",
|
|
2359
2430
|
disabled: t
|
|
2360
2431
|
}) => /* @__PURE__ */ e.jsx(
|
|
2361
|
-
|
|
2432
|
+
d,
|
|
2362
2433
|
{
|
|
2363
2434
|
ActiveImage: (
|
|
2364
2435
|
/* icon-xbox-active.svg */
|
|
@@ -2399,7 +2470,7 @@ const u2 = ({ children: s }) => {
|
|
|
2399
2470
|
}
|
|
2400
2471
|
)
|
|
2401
2472
|
),
|
|
2402
|
-
active:
|
|
2473
|
+
active: c,
|
|
2403
2474
|
disabled: t
|
|
2404
2475
|
}
|
|
2405
2476
|
), G2 = {
|
|
@@ -2412,81 +2483,82 @@ const u2 = ({ children: s }) => {
|
|
|
2412
2483
|
Flag: S2,
|
|
2413
2484
|
Gear: b2,
|
|
2414
2485
|
Glass: y2,
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2486
|
+
Hdmi: I2,
|
|
2487
|
+
Laptop: R2,
|
|
2488
|
+
LeftArrow: E2,
|
|
2489
|
+
Light: _2,
|
|
2418
2490
|
Mic: f2,
|
|
2419
|
-
Moon:
|
|
2420
|
-
Playstation:
|
|
2421
|
-
Podium:
|
|
2422
|
-
Power:
|
|
2423
|
-
Privacy:
|
|
2424
|
-
Question:
|
|
2425
|
-
RightArrow:
|
|
2426
|
-
Shade:
|
|
2491
|
+
Moon: B2,
|
|
2492
|
+
Playstation: L2,
|
|
2493
|
+
Podium: A2,
|
|
2494
|
+
Power: T2,
|
|
2495
|
+
Privacy: P2,
|
|
2496
|
+
Question: D2,
|
|
2497
|
+
RightArrow: O2,
|
|
2498
|
+
Shade: k2,
|
|
2427
2499
|
Sun: V2,
|
|
2428
|
-
UpArrow:
|
|
2429
|
-
VolDown:
|
|
2430
|
-
VolMute:
|
|
2431
|
-
VolUp:
|
|
2432
|
-
Wireless:
|
|
2500
|
+
UpArrow: $2,
|
|
2501
|
+
VolDown: F2,
|
|
2502
|
+
VolMute: W2,
|
|
2503
|
+
VolUp: U2,
|
|
2504
|
+
Wireless: H2,
|
|
2433
2505
|
X: q2,
|
|
2434
2506
|
Xbox: Y2
|
|
2435
2507
|
};
|
|
2436
|
-
function
|
|
2437
|
-
name:
|
|
2508
|
+
function L8({
|
|
2509
|
+
name: c,
|
|
2438
2510
|
...r
|
|
2439
2511
|
}) {
|
|
2440
|
-
return /* @__PURE__ */ e.jsx(x2, { multiIcon: G2[
|
|
2512
|
+
return /* @__PURE__ */ e.jsx(x2, { multiIcon: G2[c], ...r });
|
|
2441
2513
|
}
|
|
2442
|
-
const
|
|
2443
|
-
grid:
|
|
2444
|
-
header:
|
|
2445
|
-
content:
|
|
2446
|
-
footer:
|
|
2447
|
-
volume:
|
|
2448
|
-
},
|
|
2449
|
-
/* @__PURE__ */ e.jsx("div", { className:
|
|
2450
|
-
/* @__PURE__ */ e.jsx("div", { className:
|
|
2451
|
-
|
|
2452
|
-
/* @__PURE__ */ e.jsx("div", { className:
|
|
2453
|
-
] }),
|
|
2454
|
-
grid:
|
|
2455
|
-
header:
|
|
2456
|
-
content:
|
|
2514
|
+
const K2 = "_grid_1cmpp_1", J2 = "_header_1cmpp_11", z2 = "_content_1cmpp_17", X2 = "_footer_1cmpp_23", Q2 = "_volume_1cmpp_29", Y = {
|
|
2515
|
+
grid: K2,
|
|
2516
|
+
header: J2,
|
|
2517
|
+
content: z2,
|
|
2518
|
+
footer: X2,
|
|
2519
|
+
volume: Q2
|
|
2520
|
+
}, A8 = ({ header: c, footer: r, content: t, volume: l, showVolume: w }) => /* @__PURE__ */ e.jsxs("div", { className: Y.grid, children: [
|
|
2521
|
+
/* @__PURE__ */ e.jsx("div", { className: Y.header, children: c }),
|
|
2522
|
+
/* @__PURE__ */ e.jsx("div", { className: Y.content, children: t }),
|
|
2523
|
+
w && /* @__PURE__ */ e.jsx("div", { className: Y.volume, children: l }),
|
|
2524
|
+
/* @__PURE__ */ e.jsx("div", { className: Y.footer, children: r })
|
|
2525
|
+
] }), N2 = "_grid_11w5q_1", e8 = "_header_11w5q_11", r8 = "_content_11w5q_17", e3 = {
|
|
2526
|
+
grid: N2,
|
|
2527
|
+
header: e8,
|
|
2528
|
+
content: r8,
|
|
2457
2529
|
"left-nav": "_left-nav_11w5q_23"
|
|
2458
|
-
},
|
|
2530
|
+
}, T8 = ({ className: c, header: r, content: t, leftNav: l }) => /* @__PURE__ */ e.jsxs("div", { className: `${c} ${e3.grid}`, children: [
|
|
2459
2531
|
/* @__PURE__ */ e.jsx("div", { className: e3.header, children: r }),
|
|
2460
2532
|
/* @__PURE__ */ e.jsx("div", { className: e3.leftNav, children: l }),
|
|
2461
2533
|
/* @__PURE__ */ e.jsx("div", { className: e3.content, children: t })
|
|
2462
2534
|
] });
|
|
2463
|
-
function
|
|
2535
|
+
function P8() {
|
|
2464
2536
|
return console.log(location.pathname), location.pathname;
|
|
2465
2537
|
}
|
|
2466
|
-
var
|
|
2467
|
-
class
|
|
2538
|
+
var c8 = /* @__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))(c8 || {});
|
|
2539
|
+
class D8 {
|
|
2468
2540
|
constructor(r, t) {
|
|
2469
|
-
|
|
2470
|
-
|
|
2541
|
+
k(this, "path");
|
|
2542
|
+
k(this, "handler");
|
|
2471
2543
|
this.path = r, this.handler = t;
|
|
2472
2544
|
}
|
|
2473
2545
|
}
|
|
2474
|
-
const
|
|
2546
|
+
const O8 = ({ className: c }) => {
|
|
2475
2547
|
const [r, t] = r3();
|
|
2476
|
-
return
|
|
2548
|
+
return G(() => {
|
|
2477
2549
|
setInterval(() => {
|
|
2478
2550
|
const l = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
|
|
2479
2551
|
t(l);
|
|
2480
2552
|
}, 1e3);
|
|
2481
|
-
}, []), /* @__PURE__ */ e.jsxs("div", { className:
|
|
2553
|
+
}, []), /* @__PURE__ */ e.jsxs("div", { className: c, children: [
|
|
2482
2554
|
r,
|
|
2483
2555
|
" new change"
|
|
2484
2556
|
] });
|
|
2485
2557
|
};
|
|
2486
2558
|
export {
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2559
|
+
O8 as Clock,
|
|
2560
|
+
c8 as DaysOfWeek,
|
|
2561
|
+
B8 as ErrorBox,
|
|
2490
2562
|
x2 as IconButton,
|
|
2491
2563
|
M2 as IconMultiAlert,
|
|
2492
2564
|
p2 as IconMultiBan,
|
|
@@ -2497,61 +2569,62 @@ export {
|
|
|
2497
2569
|
S2 as IconMultiFlag,
|
|
2498
2570
|
b2 as IconMultiGear,
|
|
2499
2571
|
y2 as IconMultiGlass,
|
|
2500
|
-
I2 as
|
|
2501
|
-
R2 as
|
|
2502
|
-
E2 as
|
|
2503
|
-
_2 as
|
|
2504
|
-
B2 as
|
|
2505
|
-
L2 as
|
|
2506
|
-
A2 as
|
|
2507
|
-
T2 as
|
|
2508
|
-
P2 as
|
|
2509
|
-
D2 as
|
|
2510
|
-
O2 as
|
|
2572
|
+
I2 as IconMultiHdmi,
|
|
2573
|
+
R2 as IconMultiLaptop,
|
|
2574
|
+
E2 as IconMultiLeftArrow,
|
|
2575
|
+
_2 as IconMultiLight,
|
|
2576
|
+
B2 as IconMultiMoon,
|
|
2577
|
+
L2 as IconMultiPlaystation,
|
|
2578
|
+
A2 as IconMultiPodium,
|
|
2579
|
+
T2 as IconMultiPower,
|
|
2580
|
+
P2 as IconMultiPrivacy,
|
|
2581
|
+
D2 as IconMultiQuestion,
|
|
2582
|
+
O2 as IconMultiRightArrow,
|
|
2583
|
+
k2 as IconMultiShade,
|
|
2511
2584
|
V2 as IconMultiSun,
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2585
|
+
$2 as IconMultiUpArrow,
|
|
2586
|
+
F2 as IconMultiVolDown,
|
|
2587
|
+
W2 as IconMultiVolMute,
|
|
2588
|
+
U2 as IconMultiVolUp,
|
|
2589
|
+
H2 as IconMultiWireless,
|
|
2517
2590
|
q2 as IconMultiX,
|
|
2518
2591
|
Y2 as IconMultiXbox,
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2592
|
+
A8 as MainLayout,
|
|
2593
|
+
D8 as MessageHandler,
|
|
2594
|
+
E8 as MobileControlProvider,
|
|
2595
|
+
d as MultiStateIconContainer,
|
|
2596
|
+
L8 as NamedIconButton,
|
|
2597
|
+
T8 as TechLayout,
|
|
2598
|
+
P8 as getBaseLocation,
|
|
2526
2599
|
v3 as httpClient,
|
|
2527
2600
|
P as store,
|
|
2528
|
-
|
|
2601
|
+
i8 as uiActions,
|
|
2529
2602
|
Q1 as uiReducer,
|
|
2530
|
-
|
|
2603
|
+
a8 as useApiPath,
|
|
2531
2604
|
N1 as useAppConfig,
|
|
2532
2605
|
s2 as useAppDispatch,
|
|
2533
2606
|
c2 as useClientId,
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2607
|
+
_8 as useGetAllDeviceStateFromRoomConfiguration,
|
|
2608
|
+
h8 as useGetAllDevices,
|
|
2609
|
+
I8 as useGetCurrentPopoverIdForGroup,
|
|
2610
|
+
v8 as useGetDevice,
|
|
2538
2611
|
t2 as useInitialize,
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2612
|
+
j8 as useRoomAdvancedSharingActive,
|
|
2613
|
+
d8 as useRoomConfiguration,
|
|
2614
|
+
f8 as useRoomDestinationKeys,
|
|
2615
|
+
M8 as useRoomInCall,
|
|
2616
|
+
Z8 as useRoomIsCoolingDown,
|
|
2617
|
+
m8 as useRoomIsOn,
|
|
2618
|
+
p8 as useRoomIsWarmingUp,
|
|
2546
2619
|
r2 as useRoomKey,
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2620
|
+
w8 as useRoomMasterVolume,
|
|
2621
|
+
g8 as useRoomName,
|
|
2622
|
+
C8 as useRoomShareState,
|
|
2623
|
+
x8 as useRoomSourceList,
|
|
2551
2624
|
u8 as useRoomState,
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2625
|
+
b8 as useShowIncomingCallModal,
|
|
2626
|
+
y8 as useShowModal,
|
|
2627
|
+
R8 as useShowPopoverById,
|
|
2628
|
+
S8 as useShowShutdownModal,
|
|
2556
2629
|
e2 as useWsIsConnected
|
|
2557
2630
|
};
|