@pepperdash/mobile-control-react-app-core 1.1.1 → 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 +624 -553
- package/dist/mobile-control-react-app-core.umd.js +8 -8
- 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 w = r.payload.content, j =
|
|
35
|
+
const w = r.payload.content, j = c[l] ?? {}, S = W3.merge(j, w);
|
|
36
36
|
return {
|
|
37
|
-
...
|
|
37
|
+
...c,
|
|
38
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 w = l[1], j = r.payload.content, S =
|
|
50
|
+
const w = l[1], j = r.payload.content, S = c[w] ?? {}, C = W3.merge(S, j);
|
|
51
51
|
return {
|
|
52
|
-
...
|
|
52
|
+
...c,
|
|
53
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,105 +109,105 @@ 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 f = T1, N1 = () => f((
|
|
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 = () => f((
|
|
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
213
|
const r = location.pathname.split("/").filter((w) => w.length > 0);
|
|
@@ -215,9 +215,9 @@ function t2() {
|
|
|
215
215
|
const t = `/${r.join("/")}`, l = await v3.get("/_local-config/_config.local.json", { baseURL: t });
|
|
216
216
|
if (console.log("configRes", l), l.status == 200 && l.data) {
|
|
217
217
|
const w = l.data.apiPath;
|
|
218
|
-
|
|
218
|
+
c(F1.setAppConfig(l.data));
|
|
219
219
|
const j = await v3.get(`${w}/version`);
|
|
220
|
-
j.status == 200 && j.data && (console.log("versionRes", j.data),
|
|
220
|
+
j.status == 200 && j.data && (console.log("versionRes", j.data), c(F.setRuntimeConfig(j.data)));
|
|
221
221
|
}
|
|
222
222
|
} catch (r) {
|
|
223
223
|
console.log("Error getting config", r);
|
|
@@ -225,7 +225,7 @@ function t2() {
|
|
|
225
225
|
return !0;
|
|
226
226
|
};
|
|
227
227
|
}
|
|
228
|
-
var
|
|
228
|
+
var d3 = { exports: {} }, H = {};
|
|
229
229
|
/**
|
|
230
230
|
* @license React
|
|
231
231
|
* react-jsx-runtime.development.js
|
|
@@ -235,61 +235,61 @@ var u3 = { exports: {} }, q = {};
|
|
|
235
235
|
* This source code is licensed under the MIT license found in the
|
|
236
236
|
* LICENSE file in the root directory of this source tree.
|
|
237
237
|
*/
|
|
238
|
-
var
|
|
239
|
-
function
|
|
240
|
-
return
|
|
241
|
-
var
|
|
242
|
-
function D(
|
|
243
|
-
if (
|
|
238
|
+
var k3;
|
|
239
|
+
function o2() {
|
|
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")
|
|
244
244
|
return null;
|
|
245
|
-
var
|
|
246
|
-
return typeof
|
|
245
|
+
var o = M && s[M] || s[L];
|
|
246
|
+
return typeof o == "function" ? o : null;
|
|
247
247
|
}
|
|
248
|
-
var x =
|
|
249
|
-
function y(
|
|
248
|
+
var x = c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
249
|
+
function y(s) {
|
|
250
250
|
{
|
|
251
|
-
for (var
|
|
252
|
-
|
|
253
|
-
X3("error",
|
|
251
|
+
for (var o = arguments.length, n = new Array(o > 1 ? o - 1 : 0), i = 1; i < o; i++)
|
|
252
|
+
n[i - 1] = arguments[i];
|
|
253
|
+
X3("error", s, n);
|
|
254
254
|
}
|
|
255
255
|
}
|
|
256
|
-
function X3(
|
|
256
|
+
function X3(s, o, n) {
|
|
257
257
|
{
|
|
258
258
|
var i = x.ReactDebugCurrentFrame, v = i.getStackAddendum();
|
|
259
|
-
v !== "" && (
|
|
260
|
-
var
|
|
259
|
+
v !== "" && (o += "%s", n = n.concat([v]));
|
|
260
|
+
var u = n.map(function(h) {
|
|
261
261
|
return String(h);
|
|
262
262
|
});
|
|
263
|
-
|
|
263
|
+
u.unshift("Warning: " + o), Function.prototype.apply.call(console[s], console, u);
|
|
264
264
|
}
|
|
265
265
|
}
|
|
266
|
-
var Q3 = !1, N3 = !1, e1 = !1, r1 = !1, c1 = !1,
|
|
267
|
-
|
|
268
|
-
function s1(
|
|
269
|
-
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
|
|
270
270
|
// types supported by any Flight configuration anywhere since
|
|
271
271
|
// we don't know which Flight build this will end up being used
|
|
272
272
|
// with.
|
|
273
|
-
|
|
273
|
+
s.$$typeof === u3 || s.getModuleId !== void 0));
|
|
274
274
|
}
|
|
275
|
-
function t1(
|
|
276
|
-
var i =
|
|
275
|
+
function t1(s, o, n) {
|
|
276
|
+
var i = s.displayName;
|
|
277
277
|
if (i)
|
|
278
278
|
return i;
|
|
279
|
-
var v =
|
|
280
|
-
return v !== "" ?
|
|
279
|
+
var v = o.displayName || o.name || "";
|
|
280
|
+
return v !== "" ? n + "(" + v + ")" : n;
|
|
281
281
|
}
|
|
282
|
-
function g3(
|
|
283
|
-
return
|
|
282
|
+
function g3(s) {
|
|
283
|
+
return s.displayName || "Context";
|
|
284
284
|
}
|
|
285
|
-
function A(
|
|
286
|
-
if (
|
|
285
|
+
function A(s) {
|
|
286
|
+
if (s == null)
|
|
287
287
|
return null;
|
|
288
|
-
if (typeof
|
|
289
|
-
return
|
|
290
|
-
if (typeof
|
|
291
|
-
return
|
|
292
|
-
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) {
|
|
293
293
|
case l:
|
|
294
294
|
return "Fragment";
|
|
295
295
|
case t:
|
|
@@ -303,23 +303,23 @@ function n2() {
|
|
|
303
303
|
case Z:
|
|
304
304
|
return "SuspenseList";
|
|
305
305
|
}
|
|
306
|
-
if (typeof
|
|
307
|
-
switch (
|
|
306
|
+
if (typeof s == "object")
|
|
307
|
+
switch (s.$$typeof) {
|
|
308
308
|
case C:
|
|
309
|
-
var
|
|
310
|
-
return g3(
|
|
309
|
+
var o = s;
|
|
310
|
+
return g3(o) + ".Consumer";
|
|
311
311
|
case S:
|
|
312
|
-
var
|
|
313
|
-
return g3(
|
|
312
|
+
var n = s;
|
|
313
|
+
return g3(n._context) + ".Provider";
|
|
314
314
|
case g:
|
|
315
|
-
return t1(
|
|
315
|
+
return t1(s, s.render, "ForwardRef");
|
|
316
316
|
case b:
|
|
317
|
-
var i =
|
|
318
|
-
return i !== null ? i : A(
|
|
317
|
+
var i = s.displayName || null;
|
|
318
|
+
return i !== null ? i : A(s.type) || "Memo";
|
|
319
319
|
case E: {
|
|
320
|
-
var v =
|
|
320
|
+
var v = s, u = v._payload, h = v._init;
|
|
321
321
|
try {
|
|
322
|
-
return A(h(
|
|
322
|
+
return A(h(u));
|
|
323
323
|
} catch {
|
|
324
324
|
return null;
|
|
325
325
|
}
|
|
@@ -331,57 +331,57 @@ function n2() {
|
|
|
331
331
|
function j3() {
|
|
332
332
|
}
|
|
333
333
|
j3.__reactDisabledLog = !0;
|
|
334
|
-
function
|
|
334
|
+
function o1() {
|
|
335
335
|
{
|
|
336
336
|
if (W === 0) {
|
|
337
337
|
w3 = console.log, x3 = console.info, f3 = console.warn, M3 = console.error, p3 = console.group, Z3 = console.groupCollapsed, m3 = console.groupEnd;
|
|
338
|
-
var
|
|
338
|
+
var s = {
|
|
339
339
|
configurable: !0,
|
|
340
340
|
enumerable: !0,
|
|
341
341
|
value: j3,
|
|
342
342
|
writable: !0
|
|
343
343
|
};
|
|
344
344
|
Object.defineProperties(console, {
|
|
345
|
-
info:
|
|
346
|
-
log:
|
|
347
|
-
warn:
|
|
348
|
-
error:
|
|
349
|
-
group:
|
|
350
|
-
groupCollapsed:
|
|
351
|
-
groupEnd:
|
|
345
|
+
info: s,
|
|
346
|
+
log: s,
|
|
347
|
+
warn: s,
|
|
348
|
+
error: s,
|
|
349
|
+
group: s,
|
|
350
|
+
groupCollapsed: s,
|
|
351
|
+
groupEnd: s
|
|
352
352
|
});
|
|
353
353
|
}
|
|
354
354
|
W++;
|
|
355
355
|
}
|
|
356
356
|
}
|
|
357
|
-
function
|
|
357
|
+
function n1() {
|
|
358
358
|
{
|
|
359
359
|
if (W--, W === 0) {
|
|
360
|
-
var
|
|
360
|
+
var s = {
|
|
361
361
|
configurable: !0,
|
|
362
362
|
enumerable: !0,
|
|
363
363
|
writable: !0
|
|
364
364
|
};
|
|
365
365
|
Object.defineProperties(console, {
|
|
366
|
-
log: O({},
|
|
366
|
+
log: O({}, s, {
|
|
367
367
|
value: w3
|
|
368
368
|
}),
|
|
369
|
-
info: O({},
|
|
369
|
+
info: O({}, s, {
|
|
370
370
|
value: x3
|
|
371
371
|
}),
|
|
372
|
-
warn: O({},
|
|
372
|
+
warn: O({}, s, {
|
|
373
373
|
value: f3
|
|
374
374
|
}),
|
|
375
|
-
error: O({},
|
|
375
|
+
error: O({}, s, {
|
|
376
376
|
value: M3
|
|
377
377
|
}),
|
|
378
|
-
group: O({},
|
|
378
|
+
group: O({}, s, {
|
|
379
379
|
value: p3
|
|
380
380
|
}),
|
|
381
|
-
groupCollapsed: O({},
|
|
381
|
+
groupCollapsed: O({}, s, {
|
|
382
382
|
value: Z3
|
|
383
383
|
}),
|
|
384
|
-
groupEnd: O({},
|
|
384
|
+
groupEnd: O({}, s, {
|
|
385
385
|
value: m3
|
|
386
386
|
})
|
|
387
387
|
});
|
|
@@ -390,7 +390,7 @@ function n2() {
|
|
|
390
390
|
}
|
|
391
391
|
}
|
|
392
392
|
var c3 = x.ReactCurrentDispatcher, s3;
|
|
393
|
-
function J(
|
|
393
|
+
function J(s, o, n) {
|
|
394
394
|
{
|
|
395
395
|
if (s3 === void 0)
|
|
396
396
|
try {
|
|
@@ -400,7 +400,7 @@ function n2() {
|
|
|
400
400
|
s3 = i && i[1] || "";
|
|
401
401
|
}
|
|
402
402
|
return `
|
|
403
|
-
` + s3 +
|
|
403
|
+
` + s3 + s;
|
|
404
404
|
}
|
|
405
405
|
}
|
|
406
406
|
var t3 = !1, z;
|
|
@@ -408,22 +408,22 @@ function n2() {
|
|
|
408
408
|
var l1 = typeof WeakMap == "function" ? WeakMap : Map;
|
|
409
409
|
z = new l1();
|
|
410
410
|
}
|
|
411
|
-
function C3(
|
|
412
|
-
if (!
|
|
411
|
+
function C3(s, o) {
|
|
412
|
+
if (!s || t3)
|
|
413
413
|
return "";
|
|
414
414
|
{
|
|
415
|
-
var
|
|
416
|
-
if (
|
|
417
|
-
return
|
|
415
|
+
var n = z.get(s);
|
|
416
|
+
if (n !== void 0)
|
|
417
|
+
return n;
|
|
418
418
|
}
|
|
419
419
|
var i;
|
|
420
420
|
t3 = !0;
|
|
421
421
|
var v = Error.prepareStackTrace;
|
|
422
422
|
Error.prepareStackTrace = void 0;
|
|
423
|
-
var
|
|
424
|
-
|
|
423
|
+
var u;
|
|
424
|
+
u = c3.current, c3.current = null, o1();
|
|
425
425
|
try {
|
|
426
|
-
if (
|
|
426
|
+
if (o) {
|
|
427
427
|
var h = function() {
|
|
428
428
|
throw Error();
|
|
429
429
|
};
|
|
@@ -437,14 +437,14 @@ function n2() {
|
|
|
437
437
|
} catch (T) {
|
|
438
438
|
i = T;
|
|
439
439
|
}
|
|
440
|
-
Reflect.construct(
|
|
440
|
+
Reflect.construct(s, [], h);
|
|
441
441
|
} else {
|
|
442
442
|
try {
|
|
443
443
|
h.call();
|
|
444
444
|
} catch (T) {
|
|
445
445
|
i = T;
|
|
446
446
|
}
|
|
447
|
-
|
|
447
|
+
s.call(h.prototype);
|
|
448
448
|
}
|
|
449
449
|
} else {
|
|
450
450
|
try {
|
|
@@ -452,7 +452,7 @@ function n2() {
|
|
|
452
452
|
} catch (T) {
|
|
453
453
|
i = T;
|
|
454
454
|
}
|
|
455
|
-
|
|
455
|
+
s();
|
|
456
456
|
}
|
|
457
457
|
} catch (T) {
|
|
458
458
|
if (T && i && typeof T.stack == "string") {
|
|
@@ -467,48 +467,48 @@ function n2() {
|
|
|
467
467
|
if (p--, m--, m < 0 || a[p] !== I[m]) {
|
|
468
468
|
var B = `
|
|
469
469
|
` + a[p].replace(" at new ", " at ");
|
|
470
|
-
return
|
|
470
|
+
return s.displayName && B.includes("<anonymous>") && (B = B.replace("<anonymous>", s.displayName)), typeof s == "function" && z.set(s, B), B;
|
|
471
471
|
}
|
|
472
472
|
while (p >= 1 && m >= 0);
|
|
473
473
|
break;
|
|
474
474
|
}
|
|
475
475
|
}
|
|
476
476
|
} finally {
|
|
477
|
-
t3 = !1, c3.current =
|
|
477
|
+
t3 = !1, c3.current = u, n1(), Error.prepareStackTrace = v;
|
|
478
478
|
}
|
|
479
|
-
var $ =
|
|
480
|
-
return typeof
|
|
479
|
+
var $ = s ? s.displayName || s.name : "", D3 = $ ? J($) : "";
|
|
480
|
+
return typeof s == "function" && z.set(s, D3), D3;
|
|
481
481
|
}
|
|
482
|
-
function i1(
|
|
483
|
-
return C3(
|
|
482
|
+
function i1(s, o, n) {
|
|
483
|
+
return C3(s, !1);
|
|
484
484
|
}
|
|
485
|
-
function a1(
|
|
486
|
-
var
|
|
487
|
-
return !!(
|
|
485
|
+
function a1(s) {
|
|
486
|
+
var o = s.prototype;
|
|
487
|
+
return !!(o && o.isReactComponent);
|
|
488
488
|
}
|
|
489
|
-
function X(
|
|
490
|
-
if (
|
|
489
|
+
function X(s, o, n) {
|
|
490
|
+
if (s == null)
|
|
491
491
|
return "";
|
|
492
|
-
if (typeof
|
|
493
|
-
return C3(
|
|
494
|
-
if (typeof
|
|
495
|
-
return J(
|
|
496
|
-
switch (
|
|
492
|
+
if (typeof s == "function")
|
|
493
|
+
return C3(s, a1(s));
|
|
494
|
+
if (typeof s == "string")
|
|
495
|
+
return J(s);
|
|
496
|
+
switch (s) {
|
|
497
497
|
case R:
|
|
498
498
|
return J("Suspense");
|
|
499
499
|
case Z:
|
|
500
500
|
return J("SuspenseList");
|
|
501
501
|
}
|
|
502
|
-
if (typeof
|
|
503
|
-
switch (
|
|
502
|
+
if (typeof s == "object")
|
|
503
|
+
switch (s.$$typeof) {
|
|
504
504
|
case g:
|
|
505
|
-
return i1(
|
|
505
|
+
return i1(s.render);
|
|
506
506
|
case b:
|
|
507
|
-
return X(
|
|
507
|
+
return X(s.type, o, n);
|
|
508
508
|
case E: {
|
|
509
|
-
var i =
|
|
509
|
+
var i = s, v = i._payload, u = i._init;
|
|
510
510
|
try {
|
|
511
|
-
return X(
|
|
511
|
+
return X(u(v), o, n);
|
|
512
512
|
} catch {
|
|
513
513
|
}
|
|
514
514
|
}
|
|
@@ -516,118 +516,118 @@ function n2() {
|
|
|
516
516
|
return "";
|
|
517
517
|
}
|
|
518
518
|
var Q = Object.prototype.hasOwnProperty, S3 = {}, b3 = x.ReactDebugCurrentFrame;
|
|
519
|
-
function N(
|
|
520
|
-
if (
|
|
521
|
-
var
|
|
522
|
-
b3.setExtraStackFrame(
|
|
519
|
+
function N(s) {
|
|
520
|
+
if (s) {
|
|
521
|
+
var o = s._owner, n = X(s.type, s._source, o ? o.type : null);
|
|
522
|
+
b3.setExtraStackFrame(n);
|
|
523
523
|
} else
|
|
524
524
|
b3.setExtraStackFrame(null);
|
|
525
525
|
}
|
|
526
|
-
function h1(
|
|
526
|
+
function h1(s, o, n, i, v) {
|
|
527
527
|
{
|
|
528
|
-
var
|
|
529
|
-
for (var h in
|
|
530
|
-
if (
|
|
528
|
+
var u = Function.call.bind(Q);
|
|
529
|
+
for (var h in s)
|
|
530
|
+
if (u(s, h)) {
|
|
531
531
|
var a = void 0;
|
|
532
532
|
try {
|
|
533
|
-
if (typeof
|
|
534
|
-
var I = Error((i || "React class") + ": " +
|
|
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
535
|
throw I.name = "Invariant Violation", I;
|
|
536
536
|
}
|
|
537
|
-
a =
|
|
537
|
+
a = s[h](o, h, i, n, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
538
538
|
} catch (p) {
|
|
539
539
|
a = p;
|
|
540
540
|
}
|
|
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",
|
|
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));
|
|
542
542
|
}
|
|
543
543
|
}
|
|
544
544
|
}
|
|
545
545
|
var v1 = Array.isArray;
|
|
546
|
-
function
|
|
547
|
-
return v1(
|
|
546
|
+
function o3(s) {
|
|
547
|
+
return v1(s);
|
|
548
548
|
}
|
|
549
|
-
function
|
|
549
|
+
function d1(s) {
|
|
550
550
|
{
|
|
551
|
-
var
|
|
552
|
-
return
|
|
551
|
+
var o = typeof Symbol == "function" && Symbol.toStringTag, n = o && s[Symbol.toStringTag] || s.constructor.name || "Object";
|
|
552
|
+
return n;
|
|
553
553
|
}
|
|
554
554
|
}
|
|
555
|
-
function
|
|
555
|
+
function u1(s) {
|
|
556
556
|
try {
|
|
557
|
-
return y3(
|
|
557
|
+
return y3(s), !1;
|
|
558
558
|
} catch {
|
|
559
559
|
return !0;
|
|
560
560
|
}
|
|
561
561
|
}
|
|
562
|
-
function y3(
|
|
563
|
-
return "" +
|
|
562
|
+
function y3(s) {
|
|
563
|
+
return "" + s;
|
|
564
564
|
}
|
|
565
|
-
function I3(
|
|
566
|
-
if (
|
|
567
|
-
return y("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.",
|
|
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);
|
|
568
568
|
}
|
|
569
569
|
var U = x.ReactCurrentOwner, g1 = {
|
|
570
570
|
key: !0,
|
|
571
571
|
ref: !0,
|
|
572
572
|
__self: !0,
|
|
573
573
|
__source: !0
|
|
574
|
-
}, R3, E3,
|
|
575
|
-
|
|
576
|
-
function w1(
|
|
577
|
-
if (Q.call(
|
|
578
|
-
var
|
|
579
|
-
if (
|
|
574
|
+
}, R3, E3, n3;
|
|
575
|
+
n3 = {};
|
|
576
|
+
function w1(s) {
|
|
577
|
+
if (Q.call(s, "ref")) {
|
|
578
|
+
var o = Object.getOwnPropertyDescriptor(s, "ref").get;
|
|
579
|
+
if (o && o.isReactWarning)
|
|
580
580
|
return !1;
|
|
581
581
|
}
|
|
582
|
-
return
|
|
582
|
+
return s.ref !== void 0;
|
|
583
583
|
}
|
|
584
|
-
function x1(
|
|
585
|
-
if (Q.call(
|
|
586
|
-
var
|
|
587
|
-
if (
|
|
584
|
+
function x1(s) {
|
|
585
|
+
if (Q.call(s, "key")) {
|
|
586
|
+
var o = Object.getOwnPropertyDescriptor(s, "key").get;
|
|
587
|
+
if (o && o.isReactWarning)
|
|
588
588
|
return !1;
|
|
589
589
|
}
|
|
590
|
-
return
|
|
590
|
+
return s.key !== void 0;
|
|
591
591
|
}
|
|
592
|
-
function f1(
|
|
593
|
-
if (typeof
|
|
594
|
-
var
|
|
595
|
-
|
|
592
|
+
function f1(s, o) {
|
|
593
|
+
if (typeof s.ref == "string" && U.current && o && U.current.stateNode !== o) {
|
|
594
|
+
var n = A(U.current.type);
|
|
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);
|
|
596
596
|
}
|
|
597
597
|
}
|
|
598
|
-
function M1(
|
|
598
|
+
function M1(s, o) {
|
|
599
599
|
{
|
|
600
|
-
var
|
|
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)",
|
|
600
|
+
var n = function() {
|
|
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));
|
|
602
602
|
};
|
|
603
|
-
|
|
604
|
-
get:
|
|
603
|
+
n.isReactWarning = !0, Object.defineProperty(s, "key", {
|
|
604
|
+
get: n,
|
|
605
605
|
configurable: !0
|
|
606
606
|
});
|
|
607
607
|
}
|
|
608
608
|
}
|
|
609
|
-
function p1(
|
|
609
|
+
function p1(s, o) {
|
|
610
610
|
{
|
|
611
|
-
var
|
|
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)",
|
|
611
|
+
var n = function() {
|
|
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));
|
|
613
613
|
};
|
|
614
|
-
|
|
615
|
-
get:
|
|
614
|
+
n.isReactWarning = !0, Object.defineProperty(s, "ref", {
|
|
615
|
+
get: n,
|
|
616
616
|
configurable: !0
|
|
617
617
|
});
|
|
618
618
|
}
|
|
619
619
|
}
|
|
620
|
-
var Z1 = function(
|
|
620
|
+
var Z1 = function(s, o, n, i, v, u, h) {
|
|
621
621
|
var a = {
|
|
622
622
|
// This tag allows us to uniquely identify this as a React Element
|
|
623
623
|
$$typeof: r,
|
|
624
624
|
// Built-in properties that belong on the element
|
|
625
|
-
type:
|
|
626
|
-
key:
|
|
627
|
-
ref:
|
|
625
|
+
type: s,
|
|
626
|
+
key: o,
|
|
627
|
+
ref: n,
|
|
628
628
|
props: h,
|
|
629
629
|
// Record the component responsible for creating this element.
|
|
630
|
-
_owner:
|
|
630
|
+
_owner: u
|
|
631
631
|
};
|
|
632
632
|
return a._store = {}, Object.defineProperty(a._store, "validated", {
|
|
633
633
|
configurable: !1,
|
|
@@ -646,183 +646,183 @@ function n2() {
|
|
|
646
646
|
value: v
|
|
647
647
|
}), Object.freeze && (Object.freeze(a.props), Object.freeze(a)), a;
|
|
648
648
|
};
|
|
649
|
-
function m1(
|
|
649
|
+
function m1(s, o, n, i, v) {
|
|
650
650
|
{
|
|
651
|
-
var
|
|
652
|
-
|
|
653
|
-
for (
|
|
654
|
-
Q.call(
|
|
655
|
-
if (
|
|
656
|
-
var p =
|
|
657
|
-
for (
|
|
658
|
-
h[
|
|
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
659
|
}
|
|
660
660
|
if (a || I) {
|
|
661
|
-
var m = typeof
|
|
661
|
+
var m = typeof s == "function" ? s.displayName || s.name || "Unknown" : s;
|
|
662
662
|
a && M1(h, m), I && p1(h, m);
|
|
663
663
|
}
|
|
664
|
-
return Z1(
|
|
664
|
+
return Z1(s, a, I, v, i, U.current, h);
|
|
665
665
|
}
|
|
666
666
|
}
|
|
667
667
|
var l3 = x.ReactCurrentOwner, _3 = x.ReactDebugCurrentFrame;
|
|
668
|
-
function
|
|
669
|
-
if (
|
|
670
|
-
var
|
|
671
|
-
_3.setExtraStackFrame(
|
|
668
|
+
function V(s) {
|
|
669
|
+
if (s) {
|
|
670
|
+
var o = s._owner, n = X(s.type, s._source, o ? o.type : null);
|
|
671
|
+
_3.setExtraStackFrame(n);
|
|
672
672
|
} else
|
|
673
673
|
_3.setExtraStackFrame(null);
|
|
674
674
|
}
|
|
675
675
|
var i3;
|
|
676
676
|
i3 = !1;
|
|
677
|
-
function a3(
|
|
678
|
-
return typeof
|
|
677
|
+
function a3(s) {
|
|
678
|
+
return typeof s == "object" && s !== null && s.$$typeof === r;
|
|
679
679
|
}
|
|
680
680
|
function B3() {
|
|
681
681
|
{
|
|
682
682
|
if (l3.current) {
|
|
683
|
-
var
|
|
684
|
-
if (
|
|
683
|
+
var s = A(l3.current.type);
|
|
684
|
+
if (s)
|
|
685
685
|
return `
|
|
686
686
|
|
|
687
|
-
Check the render method of \`` +
|
|
687
|
+
Check the render method of \`` + s + "`.";
|
|
688
688
|
}
|
|
689
689
|
return "";
|
|
690
690
|
}
|
|
691
691
|
}
|
|
692
|
-
function j1(
|
|
692
|
+
function j1(s) {
|
|
693
693
|
{
|
|
694
|
-
if (
|
|
695
|
-
var
|
|
694
|
+
if (s !== void 0) {
|
|
695
|
+
var o = s.fileName.replace(/^.*[\\\/]/, ""), n = s.lineNumber;
|
|
696
696
|
return `
|
|
697
697
|
|
|
698
|
-
Check your code at ` +
|
|
698
|
+
Check your code at ` + o + ":" + n + ".";
|
|
699
699
|
}
|
|
700
700
|
return "";
|
|
701
701
|
}
|
|
702
702
|
}
|
|
703
703
|
var L3 = {};
|
|
704
|
-
function C1(
|
|
704
|
+
function C1(s) {
|
|
705
705
|
{
|
|
706
|
-
var
|
|
707
|
-
if (!
|
|
708
|
-
var
|
|
709
|
-
|
|
706
|
+
var o = B3();
|
|
707
|
+
if (!o) {
|
|
708
|
+
var n = typeof s == "string" ? s : s.displayName || s.name;
|
|
709
|
+
n && (o = `
|
|
710
710
|
|
|
711
|
-
Check the top-level render call using <` +
|
|
711
|
+
Check the top-level render call using <` + n + ">.");
|
|
712
712
|
}
|
|
713
|
-
return
|
|
713
|
+
return o;
|
|
714
714
|
}
|
|
715
715
|
}
|
|
716
|
-
function A3(
|
|
716
|
+
function A3(s, o) {
|
|
717
717
|
{
|
|
718
|
-
if (!
|
|
718
|
+
if (!s._store || s._store.validated || s.key != null)
|
|
719
719
|
return;
|
|
720
|
-
|
|
721
|
-
var
|
|
722
|
-
if (L3[
|
|
720
|
+
s._store.validated = !0;
|
|
721
|
+
var n = C1(o);
|
|
722
|
+
if (L3[n])
|
|
723
723
|
return;
|
|
724
|
-
L3[
|
|
724
|
+
L3[n] = !0;
|
|
725
725
|
var i = "";
|
|
726
|
-
|
|
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);
|
|
727
727
|
}
|
|
728
728
|
}
|
|
729
|
-
function T3(
|
|
729
|
+
function T3(s, o) {
|
|
730
730
|
{
|
|
731
|
-
if (typeof
|
|
731
|
+
if (typeof s != "object")
|
|
732
732
|
return;
|
|
733
|
-
if (
|
|
734
|
-
for (var
|
|
735
|
-
var i =
|
|
736
|
-
a3(i) && A3(i,
|
|
733
|
+
if (o3(s))
|
|
734
|
+
for (var n = 0; n < s.length; n++) {
|
|
735
|
+
var i = s[n];
|
|
736
|
+
a3(i) && A3(i, o);
|
|
737
737
|
}
|
|
738
|
-
else if (a3(
|
|
739
|
-
|
|
740
|
-
else if (
|
|
741
|
-
var v = D(
|
|
742
|
-
if (typeof v == "function" && v !==
|
|
743
|
-
for (var
|
|
744
|
-
a3(h.value) && A3(h.value,
|
|
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; )
|
|
744
|
+
a3(h.value) && A3(h.value, o);
|
|
745
745
|
}
|
|
746
746
|
}
|
|
747
747
|
}
|
|
748
|
-
function S1(
|
|
748
|
+
function S1(s) {
|
|
749
749
|
{
|
|
750
|
-
var
|
|
751
|
-
if (
|
|
750
|
+
var o = s.type;
|
|
751
|
+
if (o == null || typeof o == "string")
|
|
752
752
|
return;
|
|
753
|
-
var
|
|
754
|
-
if (typeof
|
|
755
|
-
|
|
756
|
-
else if (typeof
|
|
753
|
+
var n;
|
|
754
|
+
if (typeof o == "function")
|
|
755
|
+
n = o.propTypes;
|
|
756
|
+
else if (typeof o == "object" && (o.$$typeof === g || // Note: Memo only checks outer props here.
|
|
757
757
|
// Inner props are checked in the reconciler.
|
|
758
|
-
|
|
759
|
-
|
|
758
|
+
o.$$typeof === b))
|
|
759
|
+
n = o.propTypes;
|
|
760
760
|
else
|
|
761
761
|
return;
|
|
762
|
-
if (
|
|
763
|
-
var i = A(
|
|
764
|
-
h1(
|
|
765
|
-
} else if (
|
|
762
|
+
if (n) {
|
|
763
|
+
var i = A(o);
|
|
764
|
+
h1(n, s.props, "prop", i, s);
|
|
765
|
+
} else if (o.PropTypes !== void 0 && !i3) {
|
|
766
766
|
i3 = !0;
|
|
767
|
-
var v = A(
|
|
767
|
+
var v = A(o);
|
|
768
768
|
y("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", v || "Unknown");
|
|
769
769
|
}
|
|
770
|
-
typeof
|
|
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.");
|
|
771
771
|
}
|
|
772
772
|
}
|
|
773
|
-
function b1(
|
|
773
|
+
function b1(s) {
|
|
774
774
|
{
|
|
775
|
-
for (var
|
|
776
|
-
var i = n
|
|
775
|
+
for (var o = Object.keys(s.props), n = 0; n < o.length; n++) {
|
|
776
|
+
var i = o[n];
|
|
777
777
|
if (i !== "children" && i !== "key") {
|
|
778
|
-
|
|
778
|
+
V(s), y("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", i), V(null);
|
|
779
779
|
break;
|
|
780
780
|
}
|
|
781
781
|
}
|
|
782
|
-
|
|
782
|
+
s.ref !== null && (V(s), y("Invalid attribute `ref` supplied to `React.Fragment`."), V(null));
|
|
783
783
|
}
|
|
784
784
|
}
|
|
785
|
-
function P3(
|
|
785
|
+
function P3(s, o, n, i, v, u) {
|
|
786
786
|
{
|
|
787
|
-
var h = s1(
|
|
787
|
+
var h = s1(s);
|
|
788
788
|
if (!h) {
|
|
789
789
|
var a = "";
|
|
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
791
|
var I = j1(v);
|
|
792
792
|
I ? a += I : a += B3();
|
|
793
793
|
var p;
|
|
794
|
-
|
|
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);
|
|
795
795
|
}
|
|
796
|
-
var m = m1(
|
|
796
|
+
var m = m1(s, o, n, v, u);
|
|
797
797
|
if (m == null)
|
|
798
798
|
return m;
|
|
799
799
|
if (h) {
|
|
800
|
-
var B =
|
|
800
|
+
var B = o.children;
|
|
801
801
|
if (B !== void 0)
|
|
802
802
|
if (i)
|
|
803
|
-
if (
|
|
803
|
+
if (o3(B)) {
|
|
804
804
|
for (var $ = 0; $ < B.length; $++)
|
|
805
|
-
T3(B[$],
|
|
805
|
+
T3(B[$], s);
|
|
806
806
|
Object.freeze && Object.freeze(B);
|
|
807
807
|
} else
|
|
808
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.");
|
|
809
809
|
else
|
|
810
|
-
T3(B,
|
|
810
|
+
T3(B, s);
|
|
811
811
|
}
|
|
812
|
-
return
|
|
812
|
+
return s === l ? b1(m) : S1(m), m;
|
|
813
813
|
}
|
|
814
814
|
}
|
|
815
|
-
function y1(
|
|
816
|
-
return P3(
|
|
815
|
+
function y1(s, o, n) {
|
|
816
|
+
return P3(s, o, n, !0);
|
|
817
817
|
}
|
|
818
|
-
function I1(
|
|
819
|
-
return P3(
|
|
818
|
+
function I1(s, o, n) {
|
|
819
|
+
return P3(s, o, n, !1);
|
|
820
820
|
}
|
|
821
821
|
var R1 = I1, E1 = y1;
|
|
822
|
-
|
|
823
|
-
}()),
|
|
822
|
+
H.Fragment = l, H.jsx = R1, H.jsxs = E1;
|
|
823
|
+
}()), H;
|
|
824
824
|
}
|
|
825
|
-
var
|
|
825
|
+
var q = {};
|
|
826
826
|
/**
|
|
827
827
|
* @license React
|
|
828
828
|
* react-jsx-runtime.production.min.js
|
|
@@ -832,12 +832,12 @@ var Y = {};
|
|
|
832
832
|
* This source code is licensed under the MIT license found in the
|
|
833
833
|
* LICENSE file in the root directory of this source tree.
|
|
834
834
|
*/
|
|
835
|
-
var
|
|
836
|
-
function
|
|
837
|
-
if (
|
|
838
|
-
return
|
|
839
|
-
|
|
840
|
-
var
|
|
835
|
+
var V3;
|
|
836
|
+
function n2() {
|
|
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
841
|
function S(C, g, R) {
|
|
842
842
|
var Z, b = {}, E = null, _ = null;
|
|
843
843
|
R !== void 0 && (E = "" + R), g.key !== void 0 && (E = "" + g.key), g.ref !== void 0 && (_ = g.ref);
|
|
@@ -848,37 +848,37 @@ function o2() {
|
|
|
848
848
|
b[Z] === void 0 && (b[Z] = g[Z]);
|
|
849
849
|
return { $$typeof: r, type: C, key: E, ref: _, props: b, _owner: w.current };
|
|
850
850
|
}
|
|
851
|
-
return
|
|
851
|
+
return q.Fragment = t, q.jsx = S, q.jsxs = S, q;
|
|
852
852
|
}
|
|
853
|
-
process.env.NODE_ENV === "production" ?
|
|
854
|
-
var e =
|
|
853
|
+
process.env.NODE_ENV === "production" ? d3.exports = n2() : d3.exports = o2();
|
|
854
|
+
var e = d3.exports;
|
|
855
855
|
const l2 = () => /* @__PURE__ */ e.jsx(e.Fragment, { children: /* @__PURE__ */ e.jsxs("div", { className: "disconnected-message", children: [
|
|
856
856
|
/* @__PURE__ */ e.jsx("h1", { children: "Disconnected" }),
|
|
857
857
|
/* @__PURE__ */ e.jsx("p", { children: "Reconnecting..." })
|
|
858
858
|
] }) });
|
|
859
859
|
class i2 {
|
|
860
860
|
constructor() {
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
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");
|
|
865
865
|
}
|
|
866
866
|
}
|
|
867
867
|
const $3 = new i2();
|
|
868
|
-
function a2(
|
|
869
|
-
return sessionStorage.getItem(
|
|
868
|
+
function a2(c) {
|
|
869
|
+
return sessionStorage.getItem(c) || "";
|
|
870
870
|
}
|
|
871
|
-
function h2(
|
|
872
|
-
sessionStorage.setItem(
|
|
871
|
+
function h2(c, r) {
|
|
872
|
+
sessionStorage.setItem(c, r);
|
|
873
873
|
}
|
|
874
874
|
const z3 = O1({
|
|
875
875
|
sendMessage: () => null
|
|
876
876
|
});
|
|
877
877
|
function v2() {
|
|
878
|
-
return
|
|
878
|
+
return k1(z3);
|
|
879
879
|
}
|
|
880
|
-
const
|
|
881
|
-
const [r, t] = r3(), l = e2(), w = r2(), j = c2(), S = t2(), C = N1(), g =
|
|
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(
|
|
882
882
|
async (_) => {
|
|
883
883
|
await v3.get(`${_}/ui/joinroom?token=${r}`).then((M) => {
|
|
884
884
|
M.status === 200 && M.data && P.dispatch(F.setRoomData(M.data));
|
|
@@ -893,10 +893,10 @@ const u2 = ({ children: s }) => {
|
|
|
893
893
|
},
|
|
894
894
|
[l, j]
|
|
895
895
|
);
|
|
896
|
-
return
|
|
896
|
+
return G(() => {
|
|
897
897
|
let M = new URLSearchParams(window.location.search).get("token");
|
|
898
898
|
M ? (console.log("saving token: ", M), h2($3.uuid, M)) : (M = a2($3.uuid), console.log("loading token: ", M)), t(M), S();
|
|
899
|
-
}, []),
|
|
899
|
+
}, []), G(() => {
|
|
900
900
|
if (!(!C.apiPath || R || !r)) {
|
|
901
901
|
if (b(C.apiPath), !g.current) {
|
|
902
902
|
const M = `${C.apiPath.replace("http", "ws")}/ui/join/${r}`, L = new WebSocket(M);
|
|
@@ -931,7 +931,7 @@ const u2 = ({ children: s }) => {
|
|
|
931
931
|
break;
|
|
932
932
|
}
|
|
933
933
|
else
|
|
934
|
-
x.type.startsWith("/room/") ? P.dispatch(
|
|
934
|
+
x.type.startsWith("/room/") ? P.dispatch(G1.setRoomState(x)) : x.type.startsWith("/device/") && P.dispatch(H1.setDeviceState(x));
|
|
935
935
|
} catch (x) {
|
|
936
936
|
console.log(x);
|
|
937
937
|
}
|
|
@@ -941,32 +941,32 @@ const u2 = ({ children: s }) => {
|
|
|
941
941
|
g.current && g.current.close(), g.current = null;
|
|
942
942
|
};
|
|
943
943
|
}
|
|
944
|
-
}, [C.apiPath, b, r, R]),
|
|
944
|
+
}, [C.apiPath, b, r, R]), G(() => {
|
|
945
945
|
w && E(`/room/${w}/status`, null);
|
|
946
|
-
}, [w, E]), /* @__PURE__ */ e.jsx(z3.Provider, { value: { sendMessage: E }, children: l ?
|
|
947
|
-
},
|
|
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 }) => {
|
|
948
948
|
const { sendMessage: r } = v2();
|
|
949
|
-
|
|
950
|
-
if (!
|
|
949
|
+
G(() => {
|
|
950
|
+
if (!c)
|
|
951
951
|
return;
|
|
952
952
|
const t = [];
|
|
953
|
-
|
|
953
|
+
c.displayKeys.forEach((l) => {
|
|
954
954
|
t.push(l);
|
|
955
|
-
}),
|
|
955
|
+
}), c.environmentalDevices.forEach((l) => {
|
|
956
956
|
t.push(l);
|
|
957
|
-
}),
|
|
958
|
-
for (const [l, w] of Object.entries(
|
|
957
|
+
}), c.audioCodecKey && t.push(c.audioCodecKey), c.videoCodecKey && t.push(c.videoCodecKey);
|
|
958
|
+
for (const [l, w] of Object.entries(c.sourceList))
|
|
959
959
|
t.push(w.sourceKey);
|
|
960
960
|
t.forEach((l) => {
|
|
961
961
|
r(`/device/${l}/fullStatus`, { deviceKey: l });
|
|
962
962
|
});
|
|
963
|
-
}, [
|
|
964
|
-
},
|
|
965
|
-
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,
|
|
966
966
|
iconbtnvert: g2,
|
|
967
967
|
iconsm: w2
|
|
968
968
|
}, x2 = ({
|
|
969
|
-
multiIcon:
|
|
969
|
+
multiIcon: c,
|
|
970
970
|
otherContent: r = null,
|
|
971
971
|
vert: t = !1,
|
|
972
972
|
className: l,
|
|
@@ -999,7 +999,7 @@ const u2 = ({ children: s }) => {
|
|
|
999
999
|
},
|
|
1000
1000
|
children: [
|
|
1001
1001
|
/* @__PURE__ */ e.jsx(
|
|
1002
|
-
|
|
1002
|
+
c,
|
|
1003
1003
|
{
|
|
1004
1004
|
className: `${w || h3.iconsm}`,
|
|
1005
1005
|
active: D,
|
|
@@ -1010,18 +1010,18 @@ const u2 = ({ children: s }) => {
|
|
|
1010
1010
|
]
|
|
1011
1011
|
}
|
|
1012
1012
|
);
|
|
1013
|
-
},
|
|
1014
|
-
ActiveImage:
|
|
1013
|
+
}, d = ({
|
|
1014
|
+
ActiveImage: c,
|
|
1015
1015
|
DisabledImage: r,
|
|
1016
1016
|
EnabledImage: t,
|
|
1017
1017
|
active: l,
|
|
1018
1018
|
disabled: w
|
|
1019
|
-
}) => w ? r : l ?
|
|
1020
|
-
active:
|
|
1019
|
+
}) => w ? r : l ? c : t, f2 = ({
|
|
1020
|
+
active: c,
|
|
1021
1021
|
className: r = "",
|
|
1022
1022
|
disabled: t
|
|
1023
1023
|
}) => /* @__PURE__ */ e.jsx(
|
|
1024
|
-
|
|
1024
|
+
d,
|
|
1025
1025
|
{
|
|
1026
1026
|
ActiveImage: (
|
|
1027
1027
|
/* icon-mic-active.svg */
|
|
@@ -1062,15 +1062,15 @@ const u2 = ({ children: s }) => {
|
|
|
1062
1062
|
}
|
|
1063
1063
|
)
|
|
1064
1064
|
),
|
|
1065
|
-
active:
|
|
1065
|
+
active: c,
|
|
1066
1066
|
disabled: t
|
|
1067
1067
|
}
|
|
1068
1068
|
), M2 = ({
|
|
1069
|
-
active:
|
|
1069
|
+
active: c,
|
|
1070
1070
|
className: r = "",
|
|
1071
1071
|
disabled: t
|
|
1072
1072
|
}) => /* @__PURE__ */ e.jsx(
|
|
1073
|
-
|
|
1073
|
+
d,
|
|
1074
1074
|
{
|
|
1075
1075
|
ActiveImage: /* @__PURE__ */ e.jsx(
|
|
1076
1076
|
"svg",
|
|
@@ -1114,15 +1114,15 @@ const u2 = ({ children: s }) => {
|
|
|
1114
1114
|
) })
|
|
1115
1115
|
}
|
|
1116
1116
|
),
|
|
1117
|
-
active:
|
|
1117
|
+
active: c,
|
|
1118
1118
|
disabled: t
|
|
1119
1119
|
}
|
|
1120
1120
|
), p2 = ({
|
|
1121
|
-
active:
|
|
1121
|
+
active: c,
|
|
1122
1122
|
className: r = "",
|
|
1123
1123
|
disabled: t
|
|
1124
1124
|
}) => /* @__PURE__ */ e.jsx(
|
|
1125
|
-
|
|
1125
|
+
d,
|
|
1126
1126
|
{
|
|
1127
1127
|
ActiveImage: (
|
|
1128
1128
|
/* icon-ban-active.svg */
|
|
@@ -1163,15 +1163,15 @@ const u2 = ({ children: s }) => {
|
|
|
1163
1163
|
}
|
|
1164
1164
|
)
|
|
1165
1165
|
),
|
|
1166
|
-
active:
|
|
1166
|
+
active: c,
|
|
1167
1167
|
disabled: t
|
|
1168
1168
|
}
|
|
1169
1169
|
), Z2 = ({
|
|
1170
|
-
active:
|
|
1170
|
+
active: c,
|
|
1171
1171
|
className: r = "",
|
|
1172
1172
|
disabled: t
|
|
1173
1173
|
}) => /* @__PURE__ */ e.jsx(
|
|
1174
|
-
|
|
1174
|
+
d,
|
|
1175
1175
|
{
|
|
1176
1176
|
ActiveImage: /* @__PURE__ */ e.jsx(
|
|
1177
1177
|
"svg",
|
|
@@ -1203,15 +1203,15 @@ const u2 = ({ children: s }) => {
|
|
|
1203
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" }) })
|
|
1204
1204
|
}
|
|
1205
1205
|
),
|
|
1206
|
-
active:
|
|
1206
|
+
active: c,
|
|
1207
1207
|
disabled: t
|
|
1208
1208
|
}
|
|
1209
1209
|
), m2 = ({
|
|
1210
|
-
active:
|
|
1210
|
+
active: c,
|
|
1211
1211
|
className: r = "",
|
|
1212
1212
|
disabled: t
|
|
1213
1213
|
}) => /* @__PURE__ */ e.jsx(
|
|
1214
|
-
|
|
1214
|
+
d,
|
|
1215
1215
|
{
|
|
1216
1216
|
ActiveImage: (
|
|
1217
1217
|
/* icon-check-active.svg */
|
|
@@ -1252,15 +1252,15 @@ const u2 = ({ children: s }) => {
|
|
|
1252
1252
|
}
|
|
1253
1253
|
)
|
|
1254
1254
|
),
|
|
1255
|
-
active:
|
|
1255
|
+
active: c,
|
|
1256
1256
|
disabled: t
|
|
1257
1257
|
}
|
|
1258
1258
|
), j2 = ({
|
|
1259
|
-
active:
|
|
1259
|
+
active: c,
|
|
1260
1260
|
className: r = "",
|
|
1261
1261
|
disabled: t
|
|
1262
1262
|
}) => /* @__PURE__ */ e.jsx(
|
|
1263
|
-
|
|
1263
|
+
d,
|
|
1264
1264
|
{
|
|
1265
1265
|
ActiveImage: (
|
|
1266
1266
|
/* icon-down-active.svg */
|
|
@@ -1301,15 +1301,15 @@ const u2 = ({ children: s }) => {
|
|
|
1301
1301
|
}
|
|
1302
1302
|
)
|
|
1303
1303
|
),
|
|
1304
|
-
active:
|
|
1304
|
+
active: c,
|
|
1305
1305
|
disabled: t
|
|
1306
1306
|
}
|
|
1307
1307
|
), C2 = ({
|
|
1308
|
-
active:
|
|
1308
|
+
active: c,
|
|
1309
1309
|
className: r = "",
|
|
1310
1310
|
disabled: t
|
|
1311
1311
|
}) => /* @__PURE__ */ e.jsx(
|
|
1312
|
-
|
|
1312
|
+
d,
|
|
1313
1313
|
{
|
|
1314
1314
|
ActiveImage: (
|
|
1315
1315
|
/* icon-elipses-active.svg */
|
|
@@ -1350,15 +1350,15 @@ const u2 = ({ children: s }) => {
|
|
|
1350
1350
|
}
|
|
1351
1351
|
)
|
|
1352
1352
|
),
|
|
1353
|
-
active:
|
|
1353
|
+
active: c,
|
|
1354
1354
|
disabled: t
|
|
1355
1355
|
}
|
|
1356
1356
|
), S2 = ({
|
|
1357
|
-
active:
|
|
1357
|
+
active: c,
|
|
1358
1358
|
className: r = "",
|
|
1359
1359
|
disabled: t
|
|
1360
1360
|
}) => /* @__PURE__ */ e.jsx(
|
|
1361
|
-
|
|
1361
|
+
d,
|
|
1362
1362
|
{
|
|
1363
1363
|
ActiveImage: (
|
|
1364
1364
|
/* icon-flag-active.svg */
|
|
@@ -1399,15 +1399,15 @@ const u2 = ({ children: s }) => {
|
|
|
1399
1399
|
}
|
|
1400
1400
|
)
|
|
1401
1401
|
),
|
|
1402
|
-
active:
|
|
1402
|
+
active: c,
|
|
1403
1403
|
disabled: t
|
|
1404
1404
|
}
|
|
1405
1405
|
), b2 = ({
|
|
1406
|
-
active:
|
|
1406
|
+
active: c,
|
|
1407
1407
|
className: r = "",
|
|
1408
1408
|
disabled: t
|
|
1409
1409
|
}) => /* @__PURE__ */ e.jsx(
|
|
1410
|
-
|
|
1410
|
+
d,
|
|
1411
1411
|
{
|
|
1412
1412
|
ActiveImage: (
|
|
1413
1413
|
/* /Users/hvolmer/Downloads/SVG/icon-gear-active.svg */
|
|
@@ -1448,15 +1448,15 @@ const u2 = ({ children: s }) => {
|
|
|
1448
1448
|
}
|
|
1449
1449
|
)
|
|
1450
1450
|
),
|
|
1451
|
-
active:
|
|
1451
|
+
active: c,
|
|
1452
1452
|
disabled: t
|
|
1453
1453
|
}
|
|
1454
1454
|
), y2 = ({
|
|
1455
|
-
active:
|
|
1455
|
+
active: c,
|
|
1456
1456
|
className: r = "",
|
|
1457
1457
|
disabled: t
|
|
1458
1458
|
}) => /* @__PURE__ */ e.jsx(
|
|
1459
|
-
|
|
1459
|
+
d,
|
|
1460
1460
|
{
|
|
1461
1461
|
ActiveImage: (
|
|
1462
1462
|
/* icon-glass-active.svg */
|
|
@@ -1497,15 +1497,84 @@ const u2 = ({ children: s }) => {
|
|
|
1497
1497
|
}
|
|
1498
1498
|
)
|
|
1499
1499
|
),
|
|
1500
|
-
active:
|
|
1500
|
+
active: c,
|
|
1501
1501
|
disabled: t
|
|
1502
1502
|
}
|
|
1503
1503
|
), I2 = ({
|
|
1504
|
-
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,
|
|
1505
1574
|
className: r = "",
|
|
1506
1575
|
disabled: t
|
|
1507
1576
|
}) => /* @__PURE__ */ e.jsx(
|
|
1508
|
-
|
|
1577
|
+
d,
|
|
1509
1578
|
{
|
|
1510
1579
|
ActiveImage: (
|
|
1511
1580
|
/* icon-laptop-active.svg */
|
|
@@ -1546,15 +1615,15 @@ const u2 = ({ children: s }) => {
|
|
|
1546
1615
|
}
|
|
1547
1616
|
)
|
|
1548
1617
|
),
|
|
1549
|
-
active:
|
|
1618
|
+
active: c,
|
|
1550
1619
|
disabled: t
|
|
1551
1620
|
}
|
|
1552
|
-
),
|
|
1553
|
-
active:
|
|
1621
|
+
), E2 = ({
|
|
1622
|
+
active: c,
|
|
1554
1623
|
className: r = "",
|
|
1555
1624
|
disabled: t
|
|
1556
1625
|
}) => /* @__PURE__ */ e.jsx(
|
|
1557
|
-
|
|
1626
|
+
d,
|
|
1558
1627
|
{
|
|
1559
1628
|
ActiveImage: (
|
|
1560
1629
|
/* icon-left-active.svg */
|
|
@@ -1595,15 +1664,15 @@ const u2 = ({ children: s }) => {
|
|
|
1595
1664
|
}
|
|
1596
1665
|
)
|
|
1597
1666
|
),
|
|
1598
|
-
active:
|
|
1667
|
+
active: c,
|
|
1599
1668
|
disabled: t
|
|
1600
1669
|
}
|
|
1601
|
-
),
|
|
1602
|
-
active:
|
|
1670
|
+
), _2 = ({
|
|
1671
|
+
active: c,
|
|
1603
1672
|
className: r = "",
|
|
1604
1673
|
disabled: t
|
|
1605
1674
|
}) => /* @__PURE__ */ e.jsx(
|
|
1606
|
-
|
|
1675
|
+
d,
|
|
1607
1676
|
{
|
|
1608
1677
|
ActiveImage: (
|
|
1609
1678
|
/* icon-light-active.svg */
|
|
@@ -1644,15 +1713,15 @@ const u2 = ({ children: s }) => {
|
|
|
1644
1713
|
}
|
|
1645
1714
|
)
|
|
1646
1715
|
),
|
|
1647
|
-
active:
|
|
1716
|
+
active: c,
|
|
1648
1717
|
disabled: t
|
|
1649
1718
|
}
|
|
1650
|
-
),
|
|
1651
|
-
active:
|
|
1719
|
+
), B2 = ({
|
|
1720
|
+
active: c,
|
|
1652
1721
|
className: r = "",
|
|
1653
1722
|
disabled: t
|
|
1654
1723
|
}) => /* @__PURE__ */ e.jsx(
|
|
1655
|
-
|
|
1724
|
+
d,
|
|
1656
1725
|
{
|
|
1657
1726
|
ActiveImage: (
|
|
1658
1727
|
/* icon-moon-active.svg */
|
|
@@ -1693,15 +1762,15 @@ const u2 = ({ children: s }) => {
|
|
|
1693
1762
|
}
|
|
1694
1763
|
)
|
|
1695
1764
|
),
|
|
1696
|
-
active:
|
|
1765
|
+
active: c,
|
|
1697
1766
|
disabled: t
|
|
1698
1767
|
}
|
|
1699
|
-
),
|
|
1700
|
-
active:
|
|
1768
|
+
), L2 = ({
|
|
1769
|
+
active: c,
|
|
1701
1770
|
className: r = "",
|
|
1702
1771
|
disabled: t
|
|
1703
1772
|
}) => /* @__PURE__ */ e.jsx(
|
|
1704
|
-
|
|
1773
|
+
d,
|
|
1705
1774
|
{
|
|
1706
1775
|
ActiveImage: (
|
|
1707
1776
|
/* icon-playstation-active.svg */
|
|
@@ -1715,15 +1784,15 @@ const u2 = ({ children: s }) => {
|
|
|
1715
1784
|
/* icon-playstation-enabled.svg */
|
|
1716
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" }) }) })
|
|
1717
1786
|
),
|
|
1718
|
-
active:
|
|
1787
|
+
active: c,
|
|
1719
1788
|
disabled: t
|
|
1720
1789
|
}
|
|
1721
|
-
),
|
|
1722
|
-
active:
|
|
1790
|
+
), A2 = ({
|
|
1791
|
+
active: c,
|
|
1723
1792
|
className: r = "",
|
|
1724
1793
|
disabled: t
|
|
1725
1794
|
}) => /* @__PURE__ */ e.jsx(
|
|
1726
|
-
|
|
1795
|
+
d,
|
|
1727
1796
|
{
|
|
1728
1797
|
ActiveImage: (
|
|
1729
1798
|
/* icon-podium-active.svg */
|
|
@@ -1764,15 +1833,15 @@ const u2 = ({ children: s }) => {
|
|
|
1764
1833
|
}
|
|
1765
1834
|
)
|
|
1766
1835
|
),
|
|
1767
|
-
active:
|
|
1836
|
+
active: c,
|
|
1768
1837
|
disabled: t
|
|
1769
1838
|
}
|
|
1770
|
-
),
|
|
1771
|
-
active:
|
|
1839
|
+
), T2 = ({
|
|
1840
|
+
active: c,
|
|
1772
1841
|
className: r = "",
|
|
1773
1842
|
disabled: t
|
|
1774
1843
|
}) => /* @__PURE__ */ e.jsx(
|
|
1775
|
-
|
|
1844
|
+
d,
|
|
1776
1845
|
{
|
|
1777
1846
|
ActiveImage: (
|
|
1778
1847
|
/* icon-power-active.svg */
|
|
@@ -1813,15 +1882,15 @@ const u2 = ({ children: s }) => {
|
|
|
1813
1882
|
}
|
|
1814
1883
|
)
|
|
1815
1884
|
),
|
|
1816
|
-
active:
|
|
1885
|
+
active: c,
|
|
1817
1886
|
disabled: t
|
|
1818
1887
|
}
|
|
1819
|
-
),
|
|
1820
|
-
active:
|
|
1888
|
+
), P2 = ({
|
|
1889
|
+
active: c,
|
|
1821
1890
|
className: r = "",
|
|
1822
1891
|
disabled: t
|
|
1823
1892
|
}) => /* @__PURE__ */ e.jsx(
|
|
1824
|
-
|
|
1893
|
+
d,
|
|
1825
1894
|
{
|
|
1826
1895
|
ActiveImage: (
|
|
1827
1896
|
/* icon-privacy-active.svg */
|
|
@@ -1862,15 +1931,15 @@ const u2 = ({ children: s }) => {
|
|
|
1862
1931
|
}
|
|
1863
1932
|
)
|
|
1864
1933
|
),
|
|
1865
|
-
active:
|
|
1934
|
+
active: c,
|
|
1866
1935
|
disabled: t
|
|
1867
1936
|
}
|
|
1868
|
-
),
|
|
1869
|
-
active:
|
|
1937
|
+
), D2 = ({
|
|
1938
|
+
active: c,
|
|
1870
1939
|
className: r = "",
|
|
1871
1940
|
disabled: t
|
|
1872
1941
|
}) => /* @__PURE__ */ e.jsx(
|
|
1873
|
-
|
|
1942
|
+
d,
|
|
1874
1943
|
{
|
|
1875
1944
|
ActiveImage: (
|
|
1876
1945
|
/* icon-question-active.svg */
|
|
@@ -1911,15 +1980,15 @@ const u2 = ({ children: s }) => {
|
|
|
1911
1980
|
}
|
|
1912
1981
|
)
|
|
1913
1982
|
),
|
|
1914
|
-
active:
|
|
1983
|
+
active: c,
|
|
1915
1984
|
disabled: t
|
|
1916
1985
|
}
|
|
1917
|
-
),
|
|
1918
|
-
active:
|
|
1986
|
+
), O2 = ({
|
|
1987
|
+
active: c,
|
|
1919
1988
|
className: r = "",
|
|
1920
1989
|
disabled: t
|
|
1921
1990
|
}) => /* @__PURE__ */ e.jsx(
|
|
1922
|
-
|
|
1991
|
+
d,
|
|
1923
1992
|
{
|
|
1924
1993
|
ActiveImage: (
|
|
1925
1994
|
/* icon-right-active.svg */
|
|
@@ -1960,15 +2029,15 @@ const u2 = ({ children: s }) => {
|
|
|
1960
2029
|
}
|
|
1961
2030
|
)
|
|
1962
2031
|
),
|
|
1963
|
-
active:
|
|
2032
|
+
active: c,
|
|
1964
2033
|
disabled: t
|
|
1965
2034
|
}
|
|
1966
|
-
),
|
|
1967
|
-
active:
|
|
2035
|
+
), k2 = ({
|
|
2036
|
+
active: c,
|
|
1968
2037
|
className: r = "",
|
|
1969
2038
|
disabled: t
|
|
1970
2039
|
}) => /* @__PURE__ */ e.jsx(
|
|
1971
|
-
|
|
2040
|
+
d,
|
|
1972
2041
|
{
|
|
1973
2042
|
ActiveImage: (
|
|
1974
2043
|
/* icon-shade-active.svg */
|
|
@@ -2009,15 +2078,15 @@ const u2 = ({ children: s }) => {
|
|
|
2009
2078
|
}
|
|
2010
2079
|
)
|
|
2011
2080
|
),
|
|
2012
|
-
active:
|
|
2081
|
+
active: c,
|
|
2013
2082
|
disabled: t
|
|
2014
2083
|
}
|
|
2015
2084
|
), V2 = ({
|
|
2016
|
-
active:
|
|
2085
|
+
active: c,
|
|
2017
2086
|
className: r = "",
|
|
2018
2087
|
disabled: t
|
|
2019
2088
|
}) => /* @__PURE__ */ e.jsx(
|
|
2020
|
-
|
|
2089
|
+
d,
|
|
2021
2090
|
{
|
|
2022
2091
|
ActiveImage: (
|
|
2023
2092
|
/* icon-sun-active.svg */
|
|
@@ -2058,15 +2127,15 @@ const u2 = ({ children: s }) => {
|
|
|
2058
2127
|
}
|
|
2059
2128
|
)
|
|
2060
2129
|
),
|
|
2061
|
-
active:
|
|
2130
|
+
active: c,
|
|
2062
2131
|
disabled: t
|
|
2063
2132
|
}
|
|
2064
|
-
),
|
|
2065
|
-
active:
|
|
2133
|
+
), $2 = ({
|
|
2134
|
+
active: c,
|
|
2066
2135
|
className: r = "",
|
|
2067
2136
|
disabled: t
|
|
2068
2137
|
}) => /* @__PURE__ */ e.jsx(
|
|
2069
|
-
|
|
2138
|
+
d,
|
|
2070
2139
|
{
|
|
2071
2140
|
ActiveImage: (
|
|
2072
2141
|
/* icon-up-active.svg */
|
|
@@ -2107,15 +2176,15 @@ const u2 = ({ children: s }) => {
|
|
|
2107
2176
|
}
|
|
2108
2177
|
)
|
|
2109
2178
|
),
|
|
2110
|
-
active:
|
|
2179
|
+
active: c,
|
|
2111
2180
|
disabled: t
|
|
2112
2181
|
}
|
|
2113
|
-
),
|
|
2114
|
-
active:
|
|
2182
|
+
), F2 = ({
|
|
2183
|
+
active: c,
|
|
2115
2184
|
className: r = "",
|
|
2116
2185
|
disabled: t
|
|
2117
2186
|
}) => /* @__PURE__ */ e.jsx(
|
|
2118
|
-
|
|
2187
|
+
d,
|
|
2119
2188
|
{
|
|
2120
2189
|
ActiveImage: (
|
|
2121
2190
|
/* icon-volDown-active.svg */
|
|
@@ -2156,15 +2225,15 @@ const u2 = ({ children: s }) => {
|
|
|
2156
2225
|
}
|
|
2157
2226
|
)
|
|
2158
2227
|
),
|
|
2159
|
-
active:
|
|
2228
|
+
active: c,
|
|
2160
2229
|
disabled: t
|
|
2161
2230
|
}
|
|
2162
|
-
),
|
|
2163
|
-
active:
|
|
2231
|
+
), W2 = ({
|
|
2232
|
+
active: c,
|
|
2164
2233
|
className: r = "",
|
|
2165
2234
|
disabled: t
|
|
2166
2235
|
}) => /* @__PURE__ */ e.jsx(
|
|
2167
|
-
|
|
2236
|
+
d,
|
|
2168
2237
|
{
|
|
2169
2238
|
ActiveImage: (
|
|
2170
2239
|
/* icon-volMute-active.svg */
|
|
@@ -2205,15 +2274,15 @@ const u2 = ({ children: s }) => {
|
|
|
2205
2274
|
}
|
|
2206
2275
|
)
|
|
2207
2276
|
),
|
|
2208
|
-
active:
|
|
2277
|
+
active: c,
|
|
2209
2278
|
disabled: t
|
|
2210
2279
|
}
|
|
2211
|
-
),
|
|
2212
|
-
active:
|
|
2280
|
+
), U2 = ({
|
|
2281
|
+
active: c,
|
|
2213
2282
|
className: r = "",
|
|
2214
2283
|
disabled: t
|
|
2215
2284
|
}) => /* @__PURE__ */ e.jsx(
|
|
2216
|
-
|
|
2285
|
+
d,
|
|
2217
2286
|
{
|
|
2218
2287
|
ActiveImage: (
|
|
2219
2288
|
/* icon-volUp-active.svg */
|
|
@@ -2254,15 +2323,15 @@ const u2 = ({ children: s }) => {
|
|
|
2254
2323
|
}
|
|
2255
2324
|
)
|
|
2256
2325
|
),
|
|
2257
|
-
active:
|
|
2326
|
+
active: c,
|
|
2258
2327
|
disabled: t
|
|
2259
2328
|
}
|
|
2260
|
-
),
|
|
2261
|
-
active:
|
|
2329
|
+
), H2 = ({
|
|
2330
|
+
active: c,
|
|
2262
2331
|
className: r = "",
|
|
2263
2332
|
disabled: t
|
|
2264
2333
|
}) => /* @__PURE__ */ e.jsx(
|
|
2265
|
-
|
|
2334
|
+
d,
|
|
2266
2335
|
{
|
|
2267
2336
|
ActiveImage: (
|
|
2268
2337
|
/* icon-wireless-active.svg */
|
|
@@ -2303,15 +2372,15 @@ const u2 = ({ children: s }) => {
|
|
|
2303
2372
|
}
|
|
2304
2373
|
)
|
|
2305
2374
|
),
|
|
2306
|
-
active:
|
|
2375
|
+
active: c,
|
|
2307
2376
|
disabled: t
|
|
2308
2377
|
}
|
|
2309
2378
|
), q2 = ({
|
|
2310
|
-
active:
|
|
2379
|
+
active: c,
|
|
2311
2380
|
className: r = "",
|
|
2312
2381
|
disabled: t
|
|
2313
2382
|
}) => /* @__PURE__ */ e.jsx(
|
|
2314
|
-
|
|
2383
|
+
d,
|
|
2315
2384
|
{
|
|
2316
2385
|
ActiveImage: (
|
|
2317
2386
|
/* icon-x-active.svg */
|
|
@@ -2352,15 +2421,15 @@ const u2 = ({ children: s }) => {
|
|
|
2352
2421
|
}
|
|
2353
2422
|
)
|
|
2354
2423
|
),
|
|
2355
|
-
active:
|
|
2424
|
+
active: c,
|
|
2356
2425
|
disabled: t
|
|
2357
2426
|
}
|
|
2358
2427
|
), Y2 = ({
|
|
2359
|
-
active:
|
|
2428
|
+
active: c,
|
|
2360
2429
|
className: r = "",
|
|
2361
2430
|
disabled: t
|
|
2362
2431
|
}) => /* @__PURE__ */ e.jsx(
|
|
2363
|
-
|
|
2432
|
+
d,
|
|
2364
2433
|
{
|
|
2365
2434
|
ActiveImage: (
|
|
2366
2435
|
/* icon-xbox-active.svg */
|
|
@@ -2401,7 +2470,7 @@ const u2 = ({ children: s }) => {
|
|
|
2401
2470
|
}
|
|
2402
2471
|
)
|
|
2403
2472
|
),
|
|
2404
|
-
active:
|
|
2473
|
+
active: c,
|
|
2405
2474
|
disabled: t
|
|
2406
2475
|
}
|
|
2407
2476
|
), G2 = {
|
|
@@ -2414,81 +2483,82 @@ const u2 = ({ children: s }) => {
|
|
|
2414
2483
|
Flag: S2,
|
|
2415
2484
|
Gear: b2,
|
|
2416
2485
|
Glass: y2,
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2486
|
+
Hdmi: I2,
|
|
2487
|
+
Laptop: R2,
|
|
2488
|
+
LeftArrow: E2,
|
|
2489
|
+
Light: _2,
|
|
2420
2490
|
Mic: f2,
|
|
2421
|
-
Moon:
|
|
2422
|
-
Playstation:
|
|
2423
|
-
Podium:
|
|
2424
|
-
Power:
|
|
2425
|
-
Privacy:
|
|
2426
|
-
Question:
|
|
2427
|
-
RightArrow:
|
|
2428
|
-
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,
|
|
2429
2499
|
Sun: V2,
|
|
2430
|
-
UpArrow:
|
|
2431
|
-
VolDown:
|
|
2432
|
-
VolMute:
|
|
2433
|
-
VolUp:
|
|
2434
|
-
Wireless:
|
|
2500
|
+
UpArrow: $2,
|
|
2501
|
+
VolDown: F2,
|
|
2502
|
+
VolMute: W2,
|
|
2503
|
+
VolUp: U2,
|
|
2504
|
+
Wireless: H2,
|
|
2435
2505
|
X: q2,
|
|
2436
2506
|
Xbox: Y2
|
|
2437
2507
|
};
|
|
2438
|
-
function
|
|
2439
|
-
name:
|
|
2508
|
+
function L8({
|
|
2509
|
+
name: c,
|
|
2440
2510
|
...r
|
|
2441
2511
|
}) {
|
|
2442
|
-
return /* @__PURE__ */ e.jsx(x2, { multiIcon: G2[
|
|
2512
|
+
return /* @__PURE__ */ e.jsx(x2, { multiIcon: G2[c], ...r });
|
|
2443
2513
|
}
|
|
2444
|
-
const
|
|
2445
|
-
grid:
|
|
2446
|
-
header:
|
|
2447
|
-
content:
|
|
2448
|
-
footer:
|
|
2449
|
-
volume:
|
|
2450
|
-
},
|
|
2451
|
-
/* @__PURE__ */ e.jsx("div", { className:
|
|
2452
|
-
/* @__PURE__ */ e.jsx("div", { className:
|
|
2453
|
-
w && /* @__PURE__ */ e.jsx("div", { className:
|
|
2454
|
-
/* @__PURE__ */ e.jsx("div", { className:
|
|
2455
|
-
] }),
|
|
2456
|
-
grid:
|
|
2457
|
-
header:
|
|
2458
|
-
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,
|
|
2459
2529
|
"left-nav": "_left-nav_11w5q_23"
|
|
2460
|
-
},
|
|
2530
|
+
}, T8 = ({ className: c, header: r, content: t, leftNav: l }) => /* @__PURE__ */ e.jsxs("div", { className: `${c} ${e3.grid}`, children: [
|
|
2461
2531
|
/* @__PURE__ */ e.jsx("div", { className: e3.header, children: r }),
|
|
2462
2532
|
/* @__PURE__ */ e.jsx("div", { className: e3.leftNav, children: l }),
|
|
2463
2533
|
/* @__PURE__ */ e.jsx("div", { className: e3.content, children: t })
|
|
2464
2534
|
] });
|
|
2465
|
-
function
|
|
2535
|
+
function P8() {
|
|
2466
2536
|
return console.log(location.pathname), location.pathname;
|
|
2467
2537
|
}
|
|
2468
|
-
var
|
|
2469
|
-
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 {
|
|
2470
2540
|
constructor(r, t) {
|
|
2471
|
-
|
|
2472
|
-
|
|
2541
|
+
k(this, "path");
|
|
2542
|
+
k(this, "handler");
|
|
2473
2543
|
this.path = r, this.handler = t;
|
|
2474
2544
|
}
|
|
2475
2545
|
}
|
|
2476
|
-
const
|
|
2546
|
+
const O8 = ({ className: c }) => {
|
|
2477
2547
|
const [r, t] = r3();
|
|
2478
|
-
return
|
|
2548
|
+
return G(() => {
|
|
2479
2549
|
setInterval(() => {
|
|
2480
2550
|
const l = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
|
|
2481
2551
|
t(l);
|
|
2482
2552
|
}, 1e3);
|
|
2483
|
-
}, []), /* @__PURE__ */ e.jsxs("div", { className:
|
|
2553
|
+
}, []), /* @__PURE__ */ e.jsxs("div", { className: c, children: [
|
|
2484
2554
|
r,
|
|
2485
2555
|
" new change"
|
|
2486
2556
|
] });
|
|
2487
2557
|
};
|
|
2488
2558
|
export {
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2559
|
+
O8 as Clock,
|
|
2560
|
+
c8 as DaysOfWeek,
|
|
2561
|
+
B8 as ErrorBox,
|
|
2492
2562
|
x2 as IconButton,
|
|
2493
2563
|
M2 as IconMultiAlert,
|
|
2494
2564
|
p2 as IconMultiBan,
|
|
@@ -2499,61 +2569,62 @@ export {
|
|
|
2499
2569
|
S2 as IconMultiFlag,
|
|
2500
2570
|
b2 as IconMultiGear,
|
|
2501
2571
|
y2 as IconMultiGlass,
|
|
2502
|
-
I2 as
|
|
2503
|
-
R2 as
|
|
2504
|
-
E2 as
|
|
2505
|
-
_2 as
|
|
2506
|
-
B2 as
|
|
2507
|
-
L2 as
|
|
2508
|
-
A2 as
|
|
2509
|
-
T2 as
|
|
2510
|
-
P2 as
|
|
2511
|
-
D2 as
|
|
2512
|
-
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,
|
|
2513
2584
|
V2 as IconMultiSun,
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2585
|
+
$2 as IconMultiUpArrow,
|
|
2586
|
+
F2 as IconMultiVolDown,
|
|
2587
|
+
W2 as IconMultiVolMute,
|
|
2588
|
+
U2 as IconMultiVolUp,
|
|
2589
|
+
H2 as IconMultiWireless,
|
|
2519
2590
|
q2 as IconMultiX,
|
|
2520
2591
|
Y2 as IconMultiXbox,
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
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,
|
|
2528
2599
|
v3 as httpClient,
|
|
2529
2600
|
P as store,
|
|
2530
|
-
|
|
2601
|
+
i8 as uiActions,
|
|
2531
2602
|
Q1 as uiReducer,
|
|
2532
|
-
|
|
2603
|
+
a8 as useApiPath,
|
|
2533
2604
|
N1 as useAppConfig,
|
|
2534
2605
|
s2 as useAppDispatch,
|
|
2535
2606
|
c2 as useClientId,
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2607
|
+
_8 as useGetAllDeviceStateFromRoomConfiguration,
|
|
2608
|
+
h8 as useGetAllDevices,
|
|
2609
|
+
I8 as useGetCurrentPopoverIdForGroup,
|
|
2610
|
+
v8 as useGetDevice,
|
|
2540
2611
|
t2 as useInitialize,
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
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,
|
|
2548
2619
|
r2 as useRoomKey,
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2620
|
+
w8 as useRoomMasterVolume,
|
|
2621
|
+
g8 as useRoomName,
|
|
2622
|
+
C8 as useRoomShareState,
|
|
2623
|
+
x8 as useRoomSourceList,
|
|
2553
2624
|
u8 as useRoomState,
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2625
|
+
b8 as useShowIncomingCallModal,
|
|
2626
|
+
y8 as useShowModal,
|
|
2627
|
+
R8 as useShowPopoverById,
|
|
2628
|
+
S8 as useShowShutdownModal,
|
|
2558
2629
|
e2 as useWsIsConnected
|
|
2559
2630
|
};
|