@pepperdash/mobile-control-react-app-core 1.20.4 → 1.20.5
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 +1579 -1501
- package/dist/mobile-control-react-app-core.umd.js +10 -10
- package/dist/shared/hooks/interfaces/useIHasSelectableItems.d.ts +2 -1
- package/dist/shared/hooks/interfaces/useIHasSelectableItems.d.ts.map +1 -1
- package/dist/store/appConfig/appConfig.hooks.d.ts +110 -0
- package/dist/store/appConfig/appConfig.hooks.d.ts.map +1 -0
- package/dist/store/appConfig/{appConfigSelectors.d.ts → appConfig.selectors.d.ts} +2 -3
- package/dist/store/appConfig/appConfig.selectors.d.ts.map +1 -0
- package/dist/store/devices/devices.hooks.d.ts +56 -0
- package/dist/store/devices/devices.hooks.d.ts.map +1 -0
- package/dist/store/devices/devices.selectors.d.ts +13 -0
- package/dist/store/devices/devices.selectors.d.ts.map +1 -0
- package/dist/store/devices/devices.slice.d.ts +4 -35
- package/dist/store/devices/devices.slice.d.ts.map +1 -1
- package/dist/store/index.d.ts +5 -5
- package/dist/store/index.d.ts.map +1 -1
- package/dist/store/rooms/rooms.hooks.d.ts +542 -0
- package/dist/store/rooms/rooms.hooks.d.ts.map +1 -0
- package/dist/store/rooms/{roomsSelectors.d.ts → rooms.selectors.d.ts} +10 -7
- package/dist/store/rooms/rooms.selectors.d.ts.map +1 -0
- package/dist/store/rooms/rooms.slice.d.ts +4 -321
- package/dist/store/rooms/rooms.slice.d.ts.map +1 -1
- package/dist/store/runtimeConfig/runtime.hooks.d.ts +277 -0
- package/dist/store/runtimeConfig/runtime.hooks.d.ts.map +1 -0
- package/dist/store/runtimeConfig/{runtimeSelectors.d.ts → runtime.selectors.d.ts} +1 -1
- package/dist/store/runtimeConfig/runtime.selectors.d.ts.map +1 -0
- package/dist/types/state/state/CommunicationMonitorState.d.ts +2 -1
- package/dist/types/state/state/CommunicationMonitorState.d.ts.map +1 -1
- package/dist/types/state/state/DeviceInfoState.d.ts +2 -1
- package/dist/types/state/state/DeviceInfoState.d.ts.map +1 -1
- package/dist/types/state/state/IBasicVolumeWithFeedbackState.d.ts +2 -1
- package/dist/types/state/state/IBasicVolumeWithFeedbackState.d.ts.map +1 -1
- package/dist/types/state/state/IHasInputsState.d.ts +2 -1
- package/dist/types/state/state/IHasInputsState.d.ts.map +1 -1
- package/dist/types/state/state/IHasSurroundSoundModesState.d.ts +2 -1
- package/dist/types/state/state/IHasSurroundSoundModesState.d.ts.map +1 -1
- package/dist/types/state/state/MatrixRoutingState.d.ts +1 -1
- package/dist/types/state/state/MatrixRoutingState.d.ts.map +1 -1
- package/dist/types/state/state/PowerState.d.ts +2 -1
- package/dist/types/state/state/PowerState.d.ts.map +1 -1
- package/dist/types/state/state/RoutingState.d.ts +2 -1
- package/dist/types/state/state/RoutingState.d.ts.map +1 -1
- package/dist/types/state/state/SwitchedOutputState.d.ts +2 -1
- package/dist/types/state/state/SwitchedOutputState.d.ts.map +1 -1
- package/package.json +2 -2
- package/dist/store/appConfig/appConfigSelectors.d.ts.map +0 -1
- package/dist/store/devices/devicesSelectors.d.ts +0 -12
- package/dist/store/devices/devicesSelectors.d.ts.map +0 -1
- package/dist/store/rooms/roomsSelectors.d.ts.map +0 -1
- package/dist/store/runtimeConfig/runtimeSelectors.d.ts.map +0 -1
- /package/dist/{style.css → mobile-control-react-app-core.css} +0 -0
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
4
|
-
import
|
|
5
|
-
import { useDispatch as
|
|
6
|
-
import {
|
|
7
|
-
import * as
|
|
8
|
-
import
|
|
9
|
-
import { useNavigate as
|
|
10
|
-
const
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
var Q3 = Object.defineProperty;
|
|
2
|
+
var N3 = (e, t, n) => t in e ? Q3(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n;
|
|
3
|
+
var G = (e, t, n) => N3(e, typeof t != "symbol" ? t + "" : t, n);
|
|
4
|
+
import e2, { AxiosError as t2 } from "axios";
|
|
5
|
+
import { useDispatch as s2, useSelector as n2, Provider as o2 } from "react-redux";
|
|
6
|
+
import { createSelector as M, createSlice as v1, combineReducers as c2, configureStore as r2 } from "@reduxjs/toolkit";
|
|
7
|
+
import * as f3 from "lodash";
|
|
8
|
+
import p3, { createContext as l2, useState as H, useRef as h1, useCallback as i1, useEffect as o1, useContext as i2, useLayoutEffect as w3 } from "react";
|
|
9
|
+
import { useNavigate as a2, useRouteError as u2, isRouteErrorResponse as d2 } from "react-router-dom";
|
|
10
|
+
const h2 = s2.withTypes(), p = n2.withTypes(), Z1 = (e) => e.appConfig, v2 = M(
|
|
11
|
+
Z1,
|
|
12
|
+
(e) => e.config
|
|
13
|
+
), g2 = M(
|
|
14
|
+
Z1,
|
|
15
|
+
(e) => e.config.apiPath
|
|
16
|
+
), f2 = M(
|
|
17
|
+
Z1,
|
|
18
|
+
(e) => e.config.logoPath
|
|
19
|
+
), p2 = M(
|
|
20
|
+
Z1,
|
|
21
|
+
(e) => e.config.partnerMetadata
|
|
22
|
+
), w2 = () => p(v2), T6 = () => p(g2), L6 = () => p(f2), P6 = () => p(p2), x3 = (e) => e.devices, x2 = M(
|
|
23
|
+
x3,
|
|
24
|
+
(e) => e.devices
|
|
25
|
+
), M2 = (e) => M(
|
|
26
|
+
x3,
|
|
27
|
+
(t) => t[e] ? t[e] : void 0
|
|
28
|
+
), m2 = () => p(x2);
|
|
29
|
+
function T(e) {
|
|
30
|
+
return p(M2(e));
|
|
13
31
|
}
|
|
14
|
-
const
|
|
32
|
+
const Z2 = {
|
|
15
33
|
config: {
|
|
16
34
|
enableDev: !1,
|
|
17
35
|
apiPath: "",
|
|
@@ -21,45 +39,49 @@ const d2 = {
|
|
|
21
39
|
loginMode: "",
|
|
22
40
|
modes: {}
|
|
23
41
|
}
|
|
24
|
-
},
|
|
42
|
+
}, M3 = v1({
|
|
25
43
|
name: "appConfig",
|
|
26
|
-
initialState:
|
|
44
|
+
initialState: Z2,
|
|
27
45
|
reducers: {
|
|
28
|
-
setAppConfig(
|
|
29
|
-
|
|
46
|
+
setAppConfig(e, t) {
|
|
47
|
+
e.config = t.payload;
|
|
30
48
|
}
|
|
31
49
|
}
|
|
32
|
-
}),
|
|
50
|
+
}), j2 = M3.actions, C2 = M3.reducer, a3 = {}, A1 = v1({
|
|
33
51
|
name: "devices",
|
|
34
|
-
initialState:
|
|
52
|
+
initialState: a3,
|
|
35
53
|
reducers: {
|
|
36
|
-
setDeviceState(
|
|
37
|
-
const
|
|
38
|
-
if (!
|
|
39
|
-
const
|
|
40
|
-
|
|
54
|
+
setDeviceState(e, t) {
|
|
55
|
+
const n = t.payload.type, c = n.slice(n.lastIndexOf("/") + 1);
|
|
56
|
+
if (!c) return;
|
|
57
|
+
const r = t.payload.content, i = e[c] ?? {}, d = f3.merge(i, r);
|
|
58
|
+
e[c] = d;
|
|
41
59
|
},
|
|
42
60
|
clearDevices() {
|
|
43
|
-
return
|
|
61
|
+
return a3;
|
|
44
62
|
}
|
|
45
63
|
}
|
|
46
|
-
}),
|
|
64
|
+
}), s1 = {
|
|
65
|
+
setDeviceState: A1.actions.setDeviceState,
|
|
66
|
+
clearDevices: A1.actions.clearDevices
|
|
67
|
+
}, S2 = A1.reducer, u3 = {}, B1 = v1({
|
|
47
68
|
name: "rooms",
|
|
48
|
-
initialState:
|
|
69
|
+
initialState: u3,
|
|
49
70
|
reducers: {
|
|
50
|
-
setRoomState(
|
|
51
|
-
const
|
|
52
|
-
if (
|
|
53
|
-
const
|
|
54
|
-
|
|
55
|
-
const i = t[r] ?? {}, d = a3.merge(i, c);
|
|
56
|
-
return t[r] = d, console.log(t), t;
|
|
71
|
+
setRoomState(e, t) {
|
|
72
|
+
const n = t.payload.type, c = n.slice(n.lastIndexOf("/") + 1);
|
|
73
|
+
if (!c) return;
|
|
74
|
+
const r = t.payload.content, i = e[c] ?? {}, d = f3.merge(i, r);
|
|
75
|
+
e[c] = d;
|
|
57
76
|
},
|
|
58
77
|
clearRooms() {
|
|
59
|
-
return
|
|
78
|
+
return u3;
|
|
60
79
|
}
|
|
61
80
|
}
|
|
62
|
-
}),
|
|
81
|
+
}), n1 = {
|
|
82
|
+
setRoomState: B1.actions.setRoomState,
|
|
83
|
+
clearRooms: B1.actions.clearRooms
|
|
84
|
+
}, b2 = B1.reducer, I2 = {
|
|
63
85
|
apiVersion: "",
|
|
64
86
|
serverIsRunningOnProcessorHardware: !1,
|
|
65
87
|
websocket: {
|
|
@@ -89,36 +111,36 @@ const d2 = {
|
|
|
89
111
|
userCode: "",
|
|
90
112
|
qrUrl: ""
|
|
91
113
|
}
|
|
92
|
-
},
|
|
114
|
+
}, m3 = v1({
|
|
93
115
|
name: "runtimeConfig",
|
|
94
|
-
initialState:
|
|
116
|
+
initialState: I2,
|
|
95
117
|
reducers: {
|
|
96
|
-
setRuntimeConfig(
|
|
97
|
-
|
|
118
|
+
setRuntimeConfig(e, t) {
|
|
119
|
+
e.apiVersion = t.payload.apiVersion, e.serverIsRunningOnProcessorHardware = t.payload.serverIsRunningOnProcessorHardware;
|
|
98
120
|
},
|
|
99
|
-
setToken(
|
|
100
|
-
|
|
121
|
+
setToken(e, t) {
|
|
122
|
+
e.token = t.payload;
|
|
101
123
|
},
|
|
102
|
-
setWebsocketIsConnected(
|
|
103
|
-
|
|
124
|
+
setWebsocketIsConnected(e, t) {
|
|
125
|
+
e.websocket.isConnected = t.payload;
|
|
104
126
|
},
|
|
105
|
-
setPluginVersion(
|
|
106
|
-
|
|
127
|
+
setPluginVersion(e, t) {
|
|
128
|
+
e.pluginVersion = t.payload;
|
|
107
129
|
},
|
|
108
|
-
setRoomData(
|
|
109
|
-
|
|
130
|
+
setRoomData(e, t) {
|
|
131
|
+
e.roomData = t.payload;
|
|
110
132
|
},
|
|
111
|
-
setCurrentRoomKey(
|
|
112
|
-
|
|
133
|
+
setCurrentRoomKey(e, t) {
|
|
134
|
+
e.currentRoomKey = t.payload;
|
|
113
135
|
},
|
|
114
|
-
setUserCode(
|
|
115
|
-
|
|
136
|
+
setUserCode(e, t) {
|
|
137
|
+
e.roomData.userCode = t.payload.userCode, e.roomData.qrUrl = t.payload.qrUrl;
|
|
116
138
|
},
|
|
117
|
-
setTouchpanelKey(
|
|
118
|
-
|
|
139
|
+
setTouchpanelKey(e, t) {
|
|
140
|
+
e.touchpanelKey = t.payload;
|
|
119
141
|
}
|
|
120
142
|
}
|
|
121
|
-
}),
|
|
143
|
+
}), W = m3.actions, R2 = m3.reducer, y2 = {
|
|
122
144
|
showReconnect: !1,
|
|
123
145
|
error: "",
|
|
124
146
|
modalVisibility: {
|
|
@@ -126,181 +148,237 @@ const d2 = {
|
|
|
126
148
|
showIncomingCallModal: !1
|
|
127
149
|
},
|
|
128
150
|
popoverVisibility: {}
|
|
129
|
-
},
|
|
151
|
+
}, Z3 = v1({
|
|
130
152
|
name: "ui",
|
|
131
|
-
initialState:
|
|
153
|
+
initialState: y2,
|
|
132
154
|
reducers: {
|
|
133
|
-
clearAllModals(
|
|
134
|
-
Object.entries(
|
|
135
|
-
|
|
155
|
+
clearAllModals(e) {
|
|
156
|
+
Object.entries(e.modalVisibility).forEach(([t]) => {
|
|
157
|
+
e.modalVisibility[t] = !1;
|
|
136
158
|
});
|
|
137
159
|
},
|
|
138
|
-
setModalState(
|
|
139
|
-
|
|
160
|
+
setModalState(e, t) {
|
|
161
|
+
e.modalVisibility[t.payload.modalType] = t.payload.value;
|
|
140
162
|
},
|
|
141
|
-
setShowShutdownModal(
|
|
142
|
-
|
|
163
|
+
setShowShutdownModal(e, t) {
|
|
164
|
+
e.modalVisibility.showShutdownModal = t.payload;
|
|
143
165
|
},
|
|
144
|
-
setIncomingCallModal(
|
|
145
|
-
|
|
166
|
+
setIncomingCallModal(e, t) {
|
|
167
|
+
e.modalVisibility.showIncomingCallModal = t.payload;
|
|
146
168
|
},
|
|
147
|
-
setPopoverState(
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
}),
|
|
169
|
+
setPopoverState(e, t) {
|
|
170
|
+
e.popoverVisibility[t.payload.popoverGroup] || (e.popoverVisibility[t.payload.popoverGroup] = {}), Object.entries(e.popoverVisibility[t.payload.popoverGroup]).forEach(([n]) => {
|
|
171
|
+
e.popoverVisibility[t.payload.popoverGroup][n] = !1;
|
|
172
|
+
}), e.popoverVisibility[t.payload.popoverGroup][t.payload.popoverId] = t.payload.value;
|
|
151
173
|
},
|
|
152
|
-
setErrorMessage(
|
|
153
|
-
|
|
174
|
+
setErrorMessage(e, t) {
|
|
175
|
+
e.error = t.payload;
|
|
154
176
|
},
|
|
155
|
-
setShowReconnect(
|
|
156
|
-
|
|
177
|
+
setShowReconnect(e, t) {
|
|
178
|
+
e.showReconnect = t.payload;
|
|
157
179
|
},
|
|
158
|
-
setTheme(
|
|
159
|
-
|
|
180
|
+
setTheme(e, t) {
|
|
181
|
+
e.theme = t.payload;
|
|
160
182
|
}
|
|
161
183
|
}
|
|
162
|
-
}),
|
|
163
|
-
appConfig:
|
|
164
|
-
runtimeConfig:
|
|
165
|
-
rooms:
|
|
166
|
-
devices:
|
|
167
|
-
ui:
|
|
168
|
-
}),
|
|
169
|
-
reducer:
|
|
170
|
-
}),
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
(
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
),
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
)
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
(
|
|
191
|
-
var
|
|
192
|
-
return e
|
|
193
|
-
}
|
|
194
|
-
),
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
(
|
|
221
|
-
var
|
|
222
|
-
return e
|
|
223
|
-
}
|
|
224
|
-
),
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
(
|
|
251
|
-
var
|
|
252
|
-
return e
|
|
253
|
-
}
|
|
254
|
-
),
|
|
184
|
+
}), z = Z3.actions, E2 = Z3.reducer, _2 = c2({
|
|
185
|
+
appConfig: C2,
|
|
186
|
+
runtimeConfig: R2,
|
|
187
|
+
rooms: b2,
|
|
188
|
+
devices: S2,
|
|
189
|
+
ui: E2
|
|
190
|
+
}), Z = r2({
|
|
191
|
+
reducer: _2
|
|
192
|
+
}), P = (e) => e.rooms, T2 = (e) => M(
|
|
193
|
+
P,
|
|
194
|
+
(t) => t[e] ? t[e].configuration : void 0
|
|
195
|
+
), L2 = M(
|
|
196
|
+
P,
|
|
197
|
+
(e) => e.rooms
|
|
198
|
+
), P2 = (e) => M(
|
|
199
|
+
P,
|
|
200
|
+
(t) => t[e] ? t[e] : void 0
|
|
201
|
+
), D2 = (e) => M(
|
|
202
|
+
P,
|
|
203
|
+
(t) => t[e] ? t[e].name : void 0
|
|
204
|
+
), $2 = (e, t) => M(
|
|
205
|
+
P,
|
|
206
|
+
(n) => n[e] ? n[e].volumes[t] : void 0
|
|
207
|
+
), A2 = (e) => M(
|
|
208
|
+
P,
|
|
209
|
+
(t) => t[e] ? t[e] : void 0
|
|
210
|
+
), B2 = (e) => M(
|
|
211
|
+
P,
|
|
212
|
+
(t) => {
|
|
213
|
+
var n, c;
|
|
214
|
+
return t[e] ? (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.sourceList : void 0;
|
|
215
|
+
}
|
|
216
|
+
), O2 = (e) => M(
|
|
217
|
+
P,
|
|
218
|
+
(t) => {
|
|
219
|
+
var n, c;
|
|
220
|
+
return t[e] ? (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.audioControlPointList : void 0;
|
|
221
|
+
}
|
|
222
|
+
), V2 = (e) => M(
|
|
223
|
+
P,
|
|
224
|
+
(t) => {
|
|
225
|
+
var n, c;
|
|
226
|
+
return t[e] ? (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.destinations : void 0;
|
|
227
|
+
}
|
|
228
|
+
), k2 = (e) => M(
|
|
229
|
+
P,
|
|
230
|
+
(t) => {
|
|
231
|
+
var n, c;
|
|
232
|
+
return t[e] ? (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.destinationList : void 0;
|
|
233
|
+
}
|
|
234
|
+
), U2 = (e) => M(
|
|
235
|
+
P,
|
|
236
|
+
(t) => {
|
|
237
|
+
var n, c;
|
|
238
|
+
return t[e] ? (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.environmentalDevices : void 0;
|
|
239
|
+
}
|
|
240
|
+
), F2 = (e) => M(
|
|
241
|
+
P,
|
|
242
|
+
(t) => {
|
|
243
|
+
var n, c, r, i, d, a, f, w;
|
|
244
|
+
return (c = (n = t[e]) == null ? void 0 : n.configuration) != null && c.destinationList.programAudio ? (d = (i = (r = t[e]) == null ? void 0 : r.configuration) == null ? void 0 : i.destinationList.programAudio) == null ? void 0 : d.sinkKey : ((w = (f = (a = t[e]) == null ? void 0 : a.configuration) == null ? void 0 : f.destinationList.defaultDisplay) == null ? void 0 : w.sinkKey) || "";
|
|
245
|
+
}
|
|
246
|
+
), W2 = (e) => M(
|
|
247
|
+
P,
|
|
248
|
+
(t) => {
|
|
249
|
+
var n, c, r;
|
|
250
|
+
return t[e] ? (r = (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.destinationList.codecContent) == null ? void 0 : r.sinkKey : void 0;
|
|
251
|
+
}
|
|
252
|
+
), H2 = (e) => M(
|
|
253
|
+
P,
|
|
254
|
+
(t) => {
|
|
255
|
+
var n;
|
|
256
|
+
return t[e] ? (n = t[e]) == null ? void 0 : n.isInCall : void 0;
|
|
257
|
+
}
|
|
258
|
+
), K2 = (e) => M(
|
|
259
|
+
P,
|
|
260
|
+
(t) => {
|
|
261
|
+
var n;
|
|
262
|
+
return t[e] ? (n = t[e]) == null ? void 0 : n.isWarmingUp : void 0;
|
|
263
|
+
}
|
|
264
|
+
), G2 = (e) => M(
|
|
265
|
+
P,
|
|
266
|
+
(t) => {
|
|
267
|
+
var n;
|
|
268
|
+
return t[e] ? (n = t[e]) == null ? void 0 : n.isCoolingDown : void 0;
|
|
269
|
+
}
|
|
270
|
+
), q2 = (e) => M(
|
|
271
|
+
P,
|
|
272
|
+
(t) => {
|
|
273
|
+
var n;
|
|
274
|
+
return t[e] ? (n = t[e]) == null ? void 0 : n.isOn : void 0;
|
|
275
|
+
}
|
|
276
|
+
), Y2 = (e) => M(
|
|
277
|
+
P,
|
|
278
|
+
(t) => {
|
|
279
|
+
var n;
|
|
280
|
+
return t[e] ? (n = t[e]) == null ? void 0 : n.advancedSharingActive : void 0;
|
|
281
|
+
}
|
|
282
|
+
), z2 = (e) => M(
|
|
283
|
+
P,
|
|
284
|
+
(t) => {
|
|
285
|
+
var n;
|
|
286
|
+
return t[e] ? (n = t[e]) == null ? void 0 : n.share : void 0;
|
|
287
|
+
}
|
|
288
|
+
), J2 = (e) => M(
|
|
289
|
+
P,
|
|
290
|
+
(t) => {
|
|
291
|
+
var n, c;
|
|
292
|
+
return t[e] ? (c = (n = t[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.zoomRoomControllerKey : void 0;
|
|
293
|
+
}
|
|
294
|
+
);
|
|
295
|
+
function D6(e) {
|
|
296
|
+
return p(
|
|
297
|
+
T2(e)
|
|
298
|
+
);
|
|
299
|
+
}
|
|
300
|
+
function $6() {
|
|
301
|
+
return p(L2);
|
|
302
|
+
}
|
|
303
|
+
function j1(e) {
|
|
304
|
+
return p(P2(e));
|
|
305
|
+
}
|
|
306
|
+
const A6 = j1, B6 = (e) => p(
|
|
307
|
+
D2(e)
|
|
308
|
+
), X2 = (e, t) => p(
|
|
309
|
+
$2(e, t)
|
|
310
|
+
), Q2 = (e) => p(A2(e)) || void 0, O6 = (e) => p(B2(e)), V6 = (e) => p(O2(e)), k6 = (e) => p(V2(e)), U6 = (e) => p(k2(e)), F6 = (e) => p(U2(e)), W6 = (e) => p(F2(e)), H6 = (e) => p(W2(e)), K6 = (e) => p(H2(e)), G6 = (e) => p(K2(e)), q6 = (e) => p(G2(e)), Y6 = (e) => p(q2(e)), z6 = (e) => p(Y2(e)), J6 = (e) => p(z2(e)), X6 = (e) => M(
|
|
255
311
|
[
|
|
256
|
-
(
|
|
257
|
-
|
|
258
|
-
(
|
|
259
|
-
var
|
|
260
|
-
return (
|
|
312
|
+
(t, n) => n,
|
|
313
|
+
m2,
|
|
314
|
+
(t) => {
|
|
315
|
+
var n, c;
|
|
316
|
+
return (c = (n = t.rooms[e]) == null ? void 0 : n.configuration) == null ? void 0 : c.destinations;
|
|
261
317
|
}
|
|
262
318
|
],
|
|
263
|
-
(
|
|
264
|
-
if (console.log("roomKey",
|
|
265
|
-
const
|
|
266
|
-
return Object.values(
|
|
267
|
-
}
|
|
268
|
-
)(
|
|
319
|
+
(t, n, c) => {
|
|
320
|
+
if (console.log("roomKey", t), console.log("devices", n), console.log("destinations", c), !c) return;
|
|
321
|
+
const r = Object.entries(c).filter(([d]) => d !== "programAudio" && d !== "codecContent").map(([, d]) => d);
|
|
322
|
+
return Object.values(n).filter((d) => Object.values(r).includes(d.key));
|
|
323
|
+
}
|
|
324
|
+
)(Z.getState(), e), Q6 = (e) => p(J2(e)), J = (e) => e.runtimeConfig, N2 = M(
|
|
325
|
+
J,
|
|
326
|
+
(e) => e.websocket.isConnected
|
|
327
|
+
), e8 = M(
|
|
328
|
+
J,
|
|
329
|
+
(e) => e.currentRoomKey
|
|
330
|
+
), t8 = M(
|
|
331
|
+
J,
|
|
332
|
+
(e) => e.roomData.clientId
|
|
333
|
+
), s8 = M(
|
|
334
|
+
J,
|
|
335
|
+
(e) => e.roomData.systemUuid
|
|
336
|
+
), n8 = M(
|
|
337
|
+
J,
|
|
338
|
+
(e) => e.roomData.userCode
|
|
339
|
+
), o8 = M(
|
|
340
|
+
J,
|
|
341
|
+
(e) => e.serverIsRunningOnProcessorHardware
|
|
342
|
+
), c8 = M(
|
|
343
|
+
J,
|
|
269
344
|
(e) => {
|
|
270
|
-
var
|
|
271
|
-
return
|
|
272
|
-
}
|
|
273
|
-
),
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
}),
|
|
284
|
-
|
|
285
|
-
|
|
345
|
+
var t;
|
|
346
|
+
return (t = e.roomData.config) == null ? void 0 : t.runtimeInfo;
|
|
347
|
+
}
|
|
348
|
+
), r8 = M(
|
|
349
|
+
J,
|
|
350
|
+
(e) => e.touchpanelKey
|
|
351
|
+
), l8 = M(
|
|
352
|
+
J,
|
|
353
|
+
(e) => e.touchpanelKey !== ""
|
|
354
|
+
), i8 = () => p(N2), a8 = () => p(e8), u8 = () => p(t8), d8 = () => p(s8), h8 = () => p(n8), v8 = () => p(o8), N6 = () => p(c8), ee = () => p(r8), te = () => p(l8), se = () => p((e) => e.ui.modalVisibility.showShutdownModal), ne = () => p((e) => e.ui.modalVisibility.showIncomingCallModal), oe = (e) => p((t) => t.ui.modalVisibility[e]), ce = (e) => p((t) => {
|
|
355
|
+
const n = t.ui.popoverVisibility[e];
|
|
356
|
+
if (n)
|
|
357
|
+
return Object.keys(n).find((c) => n[c]);
|
|
358
|
+
}), re = (e, t) => p((n) => {
|
|
359
|
+
var c;
|
|
360
|
+
return (c = n.ui.popoverVisibility[e]) == null ? void 0 : c[t];
|
|
361
|
+
}), g8 = () => p((e) => e.ui.error), f8 = () => p((e) => e.ui.showReconnect), le = () => p((e) => e.ui.theme), O1 = e2.create();
|
|
362
|
+
function p8() {
|
|
363
|
+
const e = h2();
|
|
286
364
|
return async () => {
|
|
287
365
|
try {
|
|
288
|
-
const
|
|
289
|
-
|
|
290
|
-
const
|
|
291
|
-
if (
|
|
292
|
-
const
|
|
293
|
-
|
|
294
|
-
const i = await
|
|
295
|
-
i.status == 200 && i.data &&
|
|
366
|
+
const t = location.pathname.split("/").filter((r) => r.length > 0);
|
|
367
|
+
t.length >= 5 ? t.length = 5 : t.length = 2;
|
|
368
|
+
const n = `/${t.join("/")}`, c = await O1.get("/_local-config/_config.local.json", { baseURL: n });
|
|
369
|
+
if (c.status == 200 && c.data) {
|
|
370
|
+
const r = c.data.apiPath;
|
|
371
|
+
e(j2.setAppConfig(c.data));
|
|
372
|
+
const i = await O1.get(`${r}/version`);
|
|
373
|
+
i.status == 200 && i.data && e(W.setRuntimeConfig(i.data));
|
|
296
374
|
}
|
|
297
|
-
} catch (
|
|
298
|
-
console.error("Error getting config",
|
|
375
|
+
} catch (t) {
|
|
376
|
+
console.error("Error getting config", t);
|
|
299
377
|
}
|
|
300
378
|
return !0;
|
|
301
379
|
};
|
|
302
380
|
}
|
|
303
|
-
var
|
|
381
|
+
var M1 = { exports: {} }, a1 = {};
|
|
304
382
|
/**
|
|
305
383
|
* @license React
|
|
306
384
|
* react-jsx-runtime.production.min.js
|
|
@@ -310,21 +388,21 @@ var P1 = { exports: {} }, l1 = {};
|
|
|
310
388
|
* This source code is licensed under the MIT license found in the
|
|
311
389
|
* LICENSE file in the root directory of this source tree.
|
|
312
390
|
*/
|
|
313
|
-
var
|
|
314
|
-
function
|
|
315
|
-
if (
|
|
316
|
-
|
|
317
|
-
var
|
|
318
|
-
function d(
|
|
319
|
-
var h,
|
|
320
|
-
w !== void 0 && (
|
|
321
|
-
for (h in f)
|
|
322
|
-
if (
|
|
323
|
-
return { $$typeof:
|
|
324
|
-
}
|
|
325
|
-
return
|
|
391
|
+
var d3;
|
|
392
|
+
function w8() {
|
|
393
|
+
if (d3) return a1;
|
|
394
|
+
d3 = 1;
|
|
395
|
+
var e = p3, t = Symbol.for("react.element"), n = Symbol.for("react.fragment"), c = Object.prototype.hasOwnProperty, r = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, i = { key: !0, ref: !0, __self: !0, __source: !0 };
|
|
396
|
+
function d(a, f, w) {
|
|
397
|
+
var h, R = {}, A = null, F = null;
|
|
398
|
+
w !== void 0 && (A = "" + w), f.key !== void 0 && (A = "" + f.key), f.ref !== void 0 && (F = f.ref);
|
|
399
|
+
for (h in f) c.call(f, h) && !i.hasOwnProperty(h) && (R[h] = f[h]);
|
|
400
|
+
if (a && a.defaultProps) for (h in f = a.defaultProps, f) R[h] === void 0 && (R[h] = f[h]);
|
|
401
|
+
return { $$typeof: t, type: a, key: A, ref: F, props: R, _owner: r.current };
|
|
402
|
+
}
|
|
403
|
+
return a1.Fragment = n, a1.jsx = d, a1.jsxs = d, a1;
|
|
326
404
|
}
|
|
327
|
-
var
|
|
405
|
+
var u1 = {};
|
|
328
406
|
/**
|
|
329
407
|
* @license React
|
|
330
408
|
* react-jsx-runtime.development.js
|
|
@@ -334,91 +412,91 @@ var i1 = {};
|
|
|
334
412
|
* This source code is licensed under the MIT license found in the
|
|
335
413
|
* LICENSE file in the root directory of this source tree.
|
|
336
414
|
*/
|
|
337
|
-
var
|
|
338
|
-
function
|
|
339
|
-
return
|
|
340
|
-
var
|
|
341
|
-
function
|
|
342
|
-
if (
|
|
415
|
+
var h3;
|
|
416
|
+
function x8() {
|
|
417
|
+
return h3 || (h3 = 1, process.env.NODE_ENV !== "production" && function() {
|
|
418
|
+
var e = p3, t = Symbol.for("react.element"), n = Symbol.for("react.portal"), c = Symbol.for("react.fragment"), r = Symbol.for("react.strict_mode"), i = Symbol.for("react.profiler"), d = Symbol.for("react.provider"), a = Symbol.for("react.context"), f = Symbol.for("react.forward_ref"), w = Symbol.for("react.suspense"), h = Symbol.for("react.suspense_list"), R = Symbol.for("react.memo"), A = Symbol.for("react.lazy"), F = Symbol.for("react.offscreen"), k = Symbol.iterator, Q = "@@iterator";
|
|
419
|
+
function c1(o) {
|
|
420
|
+
if (o === null || typeof o != "object")
|
|
343
421
|
return null;
|
|
344
|
-
var l =
|
|
422
|
+
var l = k && o[k] || o[Q];
|
|
345
423
|
return typeof l == "function" ? l : null;
|
|
346
424
|
}
|
|
347
|
-
var
|
|
348
|
-
function
|
|
425
|
+
var D = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
426
|
+
function $(o) {
|
|
349
427
|
{
|
|
350
|
-
for (var l = arguments.length,
|
|
351
|
-
|
|
352
|
-
|
|
428
|
+
for (var l = arguments.length, u = new Array(l > 1 ? l - 1 : 0), v = 1; v < l; v++)
|
|
429
|
+
u[v - 1] = arguments[v];
|
|
430
|
+
C1("error", o, u);
|
|
353
431
|
}
|
|
354
432
|
}
|
|
355
|
-
function
|
|
433
|
+
function C1(o, l, u) {
|
|
356
434
|
{
|
|
357
|
-
var v =
|
|
358
|
-
|
|
359
|
-
var
|
|
360
|
-
return String(
|
|
435
|
+
var v = D.ReactDebugCurrentFrame, S = v.getStackAddendum();
|
|
436
|
+
S !== "" && (l += "%s", u = u.concat([S]));
|
|
437
|
+
var I = u.map(function(m) {
|
|
438
|
+
return String(m);
|
|
361
439
|
});
|
|
362
|
-
|
|
440
|
+
I.unshift("Warning: " + l), Function.prototype.apply.call(console[o], console, I);
|
|
363
441
|
}
|
|
364
442
|
}
|
|
365
|
-
var
|
|
366
|
-
|
|
367
|
-
function
|
|
368
|
-
return !!(typeof
|
|
443
|
+
var S1 = !1, y = !1, C = !1, g1 = !1, b1 = !1, q;
|
|
444
|
+
q = Symbol.for("react.module.reference");
|
|
445
|
+
function O(o) {
|
|
446
|
+
return !!(typeof o == "string" || typeof o == "function" || o === c || o === i || b1 || o === r || o === w || o === h || g1 || o === F || S1 || y || C || typeof o == "object" && o !== null && (o.$$typeof === A || o.$$typeof === R || o.$$typeof === d || o.$$typeof === a || o.$$typeof === f || // This needs to include all possible module reference object
|
|
369
447
|
// types supported by any Flight configuration anywhere since
|
|
370
448
|
// we don't know which Flight build this will end up being used
|
|
371
449
|
// with.
|
|
372
|
-
|
|
450
|
+
o.$$typeof === q || o.getModuleId !== void 0));
|
|
373
451
|
}
|
|
374
|
-
function
|
|
375
|
-
var v =
|
|
452
|
+
function E(o, l, u) {
|
|
453
|
+
var v = o.displayName;
|
|
376
454
|
if (v)
|
|
377
455
|
return v;
|
|
378
|
-
var
|
|
379
|
-
return
|
|
456
|
+
var S = l.displayName || l.name || "";
|
|
457
|
+
return S !== "" ? u + "(" + S + ")" : u;
|
|
380
458
|
}
|
|
381
|
-
function
|
|
382
|
-
return
|
|
459
|
+
function N(o) {
|
|
460
|
+
return o.displayName || "Context";
|
|
383
461
|
}
|
|
384
|
-
function
|
|
385
|
-
if (
|
|
462
|
+
function K(o) {
|
|
463
|
+
if (o == null)
|
|
386
464
|
return null;
|
|
387
|
-
if (typeof
|
|
388
|
-
return
|
|
389
|
-
if (typeof
|
|
390
|
-
return
|
|
391
|
-
switch (
|
|
392
|
-
case
|
|
465
|
+
if (typeof o.tag == "number" && $("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof o == "function")
|
|
466
|
+
return o.displayName || o.name || null;
|
|
467
|
+
if (typeof o == "string")
|
|
468
|
+
return o;
|
|
469
|
+
switch (o) {
|
|
470
|
+
case c:
|
|
393
471
|
return "Fragment";
|
|
394
|
-
case
|
|
472
|
+
case n:
|
|
395
473
|
return "Portal";
|
|
396
474
|
case i:
|
|
397
475
|
return "Profiler";
|
|
398
|
-
case
|
|
476
|
+
case r:
|
|
399
477
|
return "StrictMode";
|
|
400
478
|
case w:
|
|
401
479
|
return "Suspense";
|
|
402
480
|
case h:
|
|
403
481
|
return "SuspenseList";
|
|
404
482
|
}
|
|
405
|
-
if (typeof
|
|
406
|
-
switch (
|
|
407
|
-
case
|
|
408
|
-
var l =
|
|
409
|
-
return
|
|
483
|
+
if (typeof o == "object")
|
|
484
|
+
switch (o.$$typeof) {
|
|
485
|
+
case a:
|
|
486
|
+
var l = o;
|
|
487
|
+
return N(l) + ".Consumer";
|
|
410
488
|
case d:
|
|
411
|
-
var
|
|
412
|
-
return
|
|
489
|
+
var u = o;
|
|
490
|
+
return N(u._context) + ".Provider";
|
|
413
491
|
case f:
|
|
414
|
-
return
|
|
415
|
-
case
|
|
416
|
-
var v =
|
|
417
|
-
return v !== null ? v :
|
|
418
|
-
case
|
|
419
|
-
var
|
|
492
|
+
return E(o, o.render, "ForwardRef");
|
|
493
|
+
case R:
|
|
494
|
+
var v = o.displayName || null;
|
|
495
|
+
return v !== null ? v : K(o.type) || "Memo";
|
|
496
|
+
case A: {
|
|
497
|
+
var S = o, I = S._payload, m = S._init;
|
|
420
498
|
try {
|
|
421
|
-
return
|
|
499
|
+
return K(m(I));
|
|
422
500
|
} catch {
|
|
423
501
|
return null;
|
|
424
502
|
}
|
|
@@ -426,307 +504,303 @@ function P2() {
|
|
|
426
504
|
}
|
|
427
505
|
return null;
|
|
428
506
|
}
|
|
429
|
-
var
|
|
430
|
-
function
|
|
507
|
+
var Y = Object.assign, r1 = 0, k1, U1, F1, W1, H1, K1, G1;
|
|
508
|
+
function q1() {
|
|
431
509
|
}
|
|
432
|
-
|
|
433
|
-
function
|
|
510
|
+
q1.__reactDisabledLog = !0;
|
|
511
|
+
function b3() {
|
|
434
512
|
{
|
|
435
|
-
if (
|
|
436
|
-
|
|
437
|
-
var
|
|
513
|
+
if (r1 === 0) {
|
|
514
|
+
k1 = console.log, U1 = console.info, F1 = console.warn, W1 = console.error, H1 = console.group, K1 = console.groupCollapsed, G1 = console.groupEnd;
|
|
515
|
+
var o = {
|
|
438
516
|
configurable: !0,
|
|
439
517
|
enumerable: !0,
|
|
440
|
-
value:
|
|
518
|
+
value: q1,
|
|
441
519
|
writable: !0
|
|
442
520
|
};
|
|
443
521
|
Object.defineProperties(console, {
|
|
444
|
-
info:
|
|
445
|
-
log:
|
|
446
|
-
warn:
|
|
447
|
-
error:
|
|
448
|
-
group:
|
|
449
|
-
groupCollapsed:
|
|
450
|
-
groupEnd:
|
|
522
|
+
info: o,
|
|
523
|
+
log: o,
|
|
524
|
+
warn: o,
|
|
525
|
+
error: o,
|
|
526
|
+
group: o,
|
|
527
|
+
groupCollapsed: o,
|
|
528
|
+
groupEnd: o
|
|
451
529
|
});
|
|
452
530
|
}
|
|
453
|
-
|
|
531
|
+
r1++;
|
|
454
532
|
}
|
|
455
533
|
}
|
|
456
|
-
function
|
|
534
|
+
function I3() {
|
|
457
535
|
{
|
|
458
|
-
if (
|
|
459
|
-
var
|
|
536
|
+
if (r1--, r1 === 0) {
|
|
537
|
+
var o = {
|
|
460
538
|
configurable: !0,
|
|
461
539
|
enumerable: !0,
|
|
462
540
|
writable: !0
|
|
463
541
|
};
|
|
464
542
|
Object.defineProperties(console, {
|
|
465
|
-
log:
|
|
466
|
-
value:
|
|
543
|
+
log: Y({}, o, {
|
|
544
|
+
value: k1
|
|
467
545
|
}),
|
|
468
|
-
info:
|
|
469
|
-
value:
|
|
546
|
+
info: Y({}, o, {
|
|
547
|
+
value: U1
|
|
470
548
|
}),
|
|
471
|
-
warn:
|
|
472
|
-
value:
|
|
549
|
+
warn: Y({}, o, {
|
|
550
|
+
value: F1
|
|
473
551
|
}),
|
|
474
|
-
error:
|
|
475
|
-
value:
|
|
552
|
+
error: Y({}, o, {
|
|
553
|
+
value: W1
|
|
476
554
|
}),
|
|
477
|
-
group:
|
|
478
|
-
value:
|
|
555
|
+
group: Y({}, o, {
|
|
556
|
+
value: H1
|
|
479
557
|
}),
|
|
480
|
-
groupCollapsed:
|
|
481
|
-
value:
|
|
558
|
+
groupCollapsed: Y({}, o, {
|
|
559
|
+
value: K1
|
|
482
560
|
}),
|
|
483
|
-
groupEnd:
|
|
484
|
-
value:
|
|
561
|
+
groupEnd: Y({}, o, {
|
|
562
|
+
value: G1
|
|
485
563
|
})
|
|
486
564
|
});
|
|
487
565
|
}
|
|
488
|
-
|
|
566
|
+
r1 < 0 && $("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
|
489
567
|
}
|
|
490
568
|
}
|
|
491
|
-
var
|
|
492
|
-
function
|
|
569
|
+
var I1 = D.ReactCurrentDispatcher, R1;
|
|
570
|
+
function f1(o, l, u) {
|
|
493
571
|
{
|
|
494
|
-
if (
|
|
572
|
+
if (R1 === void 0)
|
|
495
573
|
try {
|
|
496
574
|
throw Error();
|
|
497
|
-
} catch (
|
|
498
|
-
var v =
|
|
499
|
-
|
|
575
|
+
} catch (S) {
|
|
576
|
+
var v = S.stack.trim().match(/\n( *(at )?)/);
|
|
577
|
+
R1 = v && v[1] || "";
|
|
500
578
|
}
|
|
501
579
|
return `
|
|
502
|
-
` +
|
|
580
|
+
` + R1 + o;
|
|
503
581
|
}
|
|
504
582
|
}
|
|
505
|
-
var
|
|
583
|
+
var y1 = !1, p1;
|
|
506
584
|
{
|
|
507
|
-
var
|
|
508
|
-
|
|
585
|
+
var R3 = typeof WeakMap == "function" ? WeakMap : Map;
|
|
586
|
+
p1 = new R3();
|
|
509
587
|
}
|
|
510
|
-
function
|
|
511
|
-
if (!
|
|
588
|
+
function Y1(o, l) {
|
|
589
|
+
if (!o || y1)
|
|
512
590
|
return "";
|
|
513
591
|
{
|
|
514
|
-
var
|
|
515
|
-
if (
|
|
516
|
-
return
|
|
592
|
+
var u = p1.get(o);
|
|
593
|
+
if (u !== void 0)
|
|
594
|
+
return u;
|
|
517
595
|
}
|
|
518
596
|
var v;
|
|
519
|
-
|
|
520
|
-
var
|
|
597
|
+
y1 = !0;
|
|
598
|
+
var S = Error.prepareStackTrace;
|
|
521
599
|
Error.prepareStackTrace = void 0;
|
|
522
|
-
var
|
|
523
|
-
|
|
600
|
+
var I;
|
|
601
|
+
I = I1.current, I1.current = null, b3();
|
|
524
602
|
try {
|
|
525
603
|
if (l) {
|
|
526
|
-
var
|
|
604
|
+
var m = function() {
|
|
527
605
|
throw Error();
|
|
528
606
|
};
|
|
529
|
-
if (Object.defineProperty(
|
|
607
|
+
if (Object.defineProperty(m.prototype, "props", {
|
|
530
608
|
set: function() {
|
|
531
609
|
throw Error();
|
|
532
610
|
}
|
|
533
611
|
}), typeof Reflect == "object" && Reflect.construct) {
|
|
534
612
|
try {
|
|
535
|
-
Reflect.construct(
|
|
536
|
-
} catch (
|
|
537
|
-
v =
|
|
613
|
+
Reflect.construct(m, []);
|
|
614
|
+
} catch (V) {
|
|
615
|
+
v = V;
|
|
538
616
|
}
|
|
539
|
-
Reflect.construct(
|
|
617
|
+
Reflect.construct(o, [], m);
|
|
540
618
|
} else {
|
|
541
619
|
try {
|
|
542
|
-
|
|
543
|
-
} catch (
|
|
544
|
-
v =
|
|
620
|
+
m.call();
|
|
621
|
+
} catch (V) {
|
|
622
|
+
v = V;
|
|
545
623
|
}
|
|
546
|
-
|
|
624
|
+
o.call(m.prototype);
|
|
547
625
|
}
|
|
548
626
|
} else {
|
|
549
627
|
try {
|
|
550
628
|
throw Error();
|
|
551
|
-
} catch (
|
|
552
|
-
v =
|
|
629
|
+
} catch (V) {
|
|
630
|
+
v = V;
|
|
553
631
|
}
|
|
554
|
-
|
|
555
|
-
}
|
|
556
|
-
} catch (
|
|
557
|
-
if (
|
|
558
|
-
for (var x =
|
|
559
|
-
`),
|
|
560
|
-
`),
|
|
561
|
-
|
|
562
|
-
for (;
|
|
563
|
-
if (x[
|
|
564
|
-
if (
|
|
632
|
+
o();
|
|
633
|
+
}
|
|
634
|
+
} catch (V) {
|
|
635
|
+
if (V && v && typeof V.stack == "string") {
|
|
636
|
+
for (var x = V.stack.split(`
|
|
637
|
+
`), B = v.stack.split(`
|
|
638
|
+
`), _ = x.length - 1, L = B.length - 1; _ >= 1 && L >= 0 && x[_] !== B[L]; )
|
|
639
|
+
L--;
|
|
640
|
+
for (; _ >= 1 && L >= 0; _--, L--)
|
|
641
|
+
if (x[_] !== B[L]) {
|
|
642
|
+
if (_ !== 1 || L !== 1)
|
|
565
643
|
do
|
|
566
|
-
if (
|
|
567
|
-
var
|
|
568
|
-
` + x[
|
|
569
|
-
return
|
|
644
|
+
if (_--, L--, L < 0 || x[_] !== B[L]) {
|
|
645
|
+
var U = `
|
|
646
|
+
` + x[_].replace(" at new ", " at ");
|
|
647
|
+
return o.displayName && U.includes("<anonymous>") && (U = U.replace("<anonymous>", o.displayName)), typeof o == "function" && p1.set(o, U), U;
|
|
570
648
|
}
|
|
571
|
-
while (
|
|
649
|
+
while (_ >= 1 && L >= 0);
|
|
572
650
|
break;
|
|
573
651
|
}
|
|
574
652
|
}
|
|
575
653
|
} finally {
|
|
576
|
-
|
|
654
|
+
y1 = !1, I1.current = I, I3(), Error.prepareStackTrace = S;
|
|
577
655
|
}
|
|
578
|
-
var
|
|
579
|
-
return typeof
|
|
656
|
+
var t1 = o ? o.displayName || o.name : "", X = t1 ? f1(t1) : "";
|
|
657
|
+
return typeof o == "function" && p1.set(o, X), X;
|
|
580
658
|
}
|
|
581
|
-
function
|
|
582
|
-
return
|
|
659
|
+
function y3(o, l, u) {
|
|
660
|
+
return Y1(o, !1);
|
|
583
661
|
}
|
|
584
|
-
function
|
|
585
|
-
var l =
|
|
662
|
+
function E3(o) {
|
|
663
|
+
var l = o.prototype;
|
|
586
664
|
return !!(l && l.isReactComponent);
|
|
587
665
|
}
|
|
588
|
-
function
|
|
589
|
-
if (
|
|
666
|
+
function w1(o, l, u) {
|
|
667
|
+
if (o == null)
|
|
590
668
|
return "";
|
|
591
|
-
if (typeof
|
|
592
|
-
return
|
|
593
|
-
if (typeof
|
|
594
|
-
return
|
|
595
|
-
switch (
|
|
669
|
+
if (typeof o == "function")
|
|
670
|
+
return Y1(o, E3(o));
|
|
671
|
+
if (typeof o == "string")
|
|
672
|
+
return f1(o);
|
|
673
|
+
switch (o) {
|
|
596
674
|
case w:
|
|
597
|
-
return
|
|
675
|
+
return f1("Suspense");
|
|
598
676
|
case h:
|
|
599
|
-
return
|
|
677
|
+
return f1("SuspenseList");
|
|
600
678
|
}
|
|
601
|
-
if (typeof
|
|
602
|
-
switch (
|
|
679
|
+
if (typeof o == "object")
|
|
680
|
+
switch (o.$$typeof) {
|
|
603
681
|
case f:
|
|
604
|
-
return
|
|
605
|
-
case
|
|
606
|
-
return
|
|
607
|
-
case
|
|
608
|
-
var v =
|
|
682
|
+
return y3(o.render);
|
|
683
|
+
case R:
|
|
684
|
+
return w1(o.type, l, u);
|
|
685
|
+
case A: {
|
|
686
|
+
var v = o, S = v._payload, I = v._init;
|
|
609
687
|
try {
|
|
610
|
-
return
|
|
688
|
+
return w1(I(S), l, u);
|
|
611
689
|
} catch {
|
|
612
690
|
}
|
|
613
691
|
}
|
|
614
692
|
}
|
|
615
693
|
return "";
|
|
616
694
|
}
|
|
617
|
-
var
|
|
618
|
-
function
|
|
619
|
-
if (
|
|
620
|
-
var l =
|
|
621
|
-
|
|
695
|
+
var l1 = Object.prototype.hasOwnProperty, z1 = {}, J1 = D.ReactDebugCurrentFrame;
|
|
696
|
+
function x1(o) {
|
|
697
|
+
if (o) {
|
|
698
|
+
var l = o._owner, u = w1(o.type, o._source, l ? l.type : null);
|
|
699
|
+
J1.setExtraStackFrame(u);
|
|
622
700
|
} else
|
|
623
|
-
|
|
701
|
+
J1.setExtraStackFrame(null);
|
|
624
702
|
}
|
|
625
|
-
function
|
|
703
|
+
function _3(o, l, u, v, S) {
|
|
626
704
|
{
|
|
627
|
-
var
|
|
628
|
-
for (var
|
|
629
|
-
if (
|
|
705
|
+
var I = Function.call.bind(l1);
|
|
706
|
+
for (var m in o)
|
|
707
|
+
if (I(o, m)) {
|
|
630
708
|
var x = void 0;
|
|
631
709
|
try {
|
|
632
|
-
if (typeof
|
|
633
|
-
var
|
|
634
|
-
throw
|
|
710
|
+
if (typeof o[m] != "function") {
|
|
711
|
+
var B = Error((v || "React class") + ": " + u + " type `" + m + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof o[m] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
712
|
+
throw B.name = "Invariant Violation", B;
|
|
635
713
|
}
|
|
636
|
-
x =
|
|
637
|
-
} catch (
|
|
638
|
-
x =
|
|
714
|
+
x = o[m](l, m, v, u, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
715
|
+
} catch (_) {
|
|
716
|
+
x = _;
|
|
639
717
|
}
|
|
640
|
-
x && !(x instanceof Error) && (
|
|
718
|
+
x && !(x instanceof Error) && (x1(S), $("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", v || "React class", u, m, typeof x), x1(null)), x instanceof Error && !(x.message in z1) && (z1[x.message] = !0, x1(S), $("Failed %s type: %s", u, x.message), x1(null));
|
|
641
719
|
}
|
|
642
720
|
}
|
|
643
721
|
}
|
|
644
|
-
var
|
|
645
|
-
function
|
|
646
|
-
return
|
|
722
|
+
var T3 = Array.isArray;
|
|
723
|
+
function E1(o) {
|
|
724
|
+
return T3(o);
|
|
647
725
|
}
|
|
648
|
-
function
|
|
726
|
+
function L3(o) {
|
|
649
727
|
{
|
|
650
|
-
var l = typeof Symbol == "function" && Symbol.toStringTag,
|
|
651
|
-
return
|
|
728
|
+
var l = typeof Symbol == "function" && Symbol.toStringTag, u = l && o[Symbol.toStringTag] || o.constructor.name || "Object";
|
|
729
|
+
return u;
|
|
652
730
|
}
|
|
653
731
|
}
|
|
654
|
-
function
|
|
732
|
+
function P3(o) {
|
|
655
733
|
try {
|
|
656
|
-
return
|
|
734
|
+
return X1(o), !1;
|
|
657
735
|
} catch {
|
|
658
736
|
return !0;
|
|
659
737
|
}
|
|
660
738
|
}
|
|
661
|
-
function
|
|
662
|
-
return "" +
|
|
739
|
+
function X1(o) {
|
|
740
|
+
return "" + o;
|
|
663
741
|
}
|
|
664
|
-
function
|
|
665
|
-
if (
|
|
666
|
-
return
|
|
742
|
+
function Q1(o) {
|
|
743
|
+
if (P3(o))
|
|
744
|
+
return $("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", L3(o)), X1(o);
|
|
667
745
|
}
|
|
668
|
-
var
|
|
746
|
+
var N1 = D.ReactCurrentOwner, D3 = {
|
|
669
747
|
key: !0,
|
|
670
748
|
ref: !0,
|
|
671
749
|
__self: !0,
|
|
672
750
|
__source: !0
|
|
673
|
-
},
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
var l = Object.getOwnPropertyDescriptor(n, "ref").get;
|
|
751
|
+
}, e3, t3;
|
|
752
|
+
function $3(o) {
|
|
753
|
+
if (l1.call(o, "ref")) {
|
|
754
|
+
var l = Object.getOwnPropertyDescriptor(o, "ref").get;
|
|
678
755
|
if (l && l.isReactWarning)
|
|
679
756
|
return !1;
|
|
680
757
|
}
|
|
681
|
-
return
|
|
758
|
+
return o.ref !== void 0;
|
|
682
759
|
}
|
|
683
|
-
function
|
|
684
|
-
if (
|
|
685
|
-
var l = Object.getOwnPropertyDescriptor(
|
|
760
|
+
function A3(o) {
|
|
761
|
+
if (l1.call(o, "key")) {
|
|
762
|
+
var l = Object.getOwnPropertyDescriptor(o, "key").get;
|
|
686
763
|
if (l && l.isReactWarning)
|
|
687
764
|
return !1;
|
|
688
765
|
}
|
|
689
|
-
return
|
|
766
|
+
return o.key !== void 0;
|
|
690
767
|
}
|
|
691
|
-
function
|
|
692
|
-
|
|
693
|
-
var a = V(r1.current.type);
|
|
694
|
-
b1[a] || (L('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', V(r1.current.type), n.ref), b1[a] = !0);
|
|
695
|
-
}
|
|
768
|
+
function B3(o, l) {
|
|
769
|
+
typeof o.ref == "string" && N1.current;
|
|
696
770
|
}
|
|
697
|
-
function
|
|
771
|
+
function O3(o, l) {
|
|
698
772
|
{
|
|
699
|
-
var
|
|
700
|
-
|
|
773
|
+
var u = function() {
|
|
774
|
+
e3 || (e3 = !0, $("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", l));
|
|
701
775
|
};
|
|
702
|
-
|
|
703
|
-
get:
|
|
776
|
+
u.isReactWarning = !0, Object.defineProperty(o, "key", {
|
|
777
|
+
get: u,
|
|
704
778
|
configurable: !0
|
|
705
779
|
});
|
|
706
780
|
}
|
|
707
781
|
}
|
|
708
|
-
function
|
|
782
|
+
function V3(o, l) {
|
|
709
783
|
{
|
|
710
|
-
var
|
|
711
|
-
|
|
784
|
+
var u = function() {
|
|
785
|
+
t3 || (t3 = !0, $("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", l));
|
|
712
786
|
};
|
|
713
|
-
|
|
714
|
-
get:
|
|
787
|
+
u.isReactWarning = !0, Object.defineProperty(o, "ref", {
|
|
788
|
+
get: u,
|
|
715
789
|
configurable: !0
|
|
716
790
|
});
|
|
717
791
|
}
|
|
718
792
|
}
|
|
719
|
-
var
|
|
793
|
+
var k3 = function(o, l, u, v, S, I, m) {
|
|
720
794
|
var x = {
|
|
721
795
|
// This tag allows us to uniquely identify this as a React Element
|
|
722
|
-
$$typeof:
|
|
796
|
+
$$typeof: t,
|
|
723
797
|
// Built-in properties that belong on the element
|
|
724
|
-
type:
|
|
798
|
+
type: o,
|
|
725
799
|
key: l,
|
|
726
|
-
ref:
|
|
727
|
-
props:
|
|
800
|
+
ref: u,
|
|
801
|
+
props: m,
|
|
728
802
|
// Record the component responsible for creating this element.
|
|
729
|
-
_owner:
|
|
803
|
+
_owner: I
|
|
730
804
|
};
|
|
731
805
|
return x._store = {}, Object.defineProperty(x._store, "validated", {
|
|
732
806
|
configurable: !1,
|
|
@@ -742,314 +816,317 @@ function P2() {
|
|
|
742
816
|
configurable: !1,
|
|
743
817
|
enumerable: !1,
|
|
744
818
|
writable: !1,
|
|
745
|
-
value:
|
|
819
|
+
value: S
|
|
746
820
|
}), Object.freeze && (Object.freeze(x.props), Object.freeze(x)), x;
|
|
747
821
|
};
|
|
748
|
-
function
|
|
822
|
+
function U3(o, l, u, v, S) {
|
|
749
823
|
{
|
|
750
|
-
var
|
|
751
|
-
|
|
752
|
-
for (
|
|
753
|
-
|
|
754
|
-
if (
|
|
755
|
-
var
|
|
756
|
-
for (
|
|
757
|
-
|
|
758
|
-
}
|
|
759
|
-
if (x ||
|
|
760
|
-
var
|
|
761
|
-
x &&
|
|
762
|
-
}
|
|
763
|
-
return
|
|
824
|
+
var I, m = {}, x = null, B = null;
|
|
825
|
+
u !== void 0 && (Q1(u), x = "" + u), A3(l) && (Q1(l.key), x = "" + l.key), $3(l) && (B = l.ref, B3(l, S));
|
|
826
|
+
for (I in l)
|
|
827
|
+
l1.call(l, I) && !D3.hasOwnProperty(I) && (m[I] = l[I]);
|
|
828
|
+
if (o && o.defaultProps) {
|
|
829
|
+
var _ = o.defaultProps;
|
|
830
|
+
for (I in _)
|
|
831
|
+
m[I] === void 0 && (m[I] = _[I]);
|
|
832
|
+
}
|
|
833
|
+
if (x || B) {
|
|
834
|
+
var L = typeof o == "function" ? o.displayName || o.name || "Unknown" : o;
|
|
835
|
+
x && O3(m, L), B && V3(m, L);
|
|
836
|
+
}
|
|
837
|
+
return k3(o, x, B, S, v, N1.current, m);
|
|
764
838
|
}
|
|
765
839
|
}
|
|
766
|
-
var
|
|
767
|
-
function
|
|
768
|
-
if (
|
|
769
|
-
var l =
|
|
770
|
-
|
|
840
|
+
var _1 = D.ReactCurrentOwner, s3 = D.ReactDebugCurrentFrame;
|
|
841
|
+
function e1(o) {
|
|
842
|
+
if (o) {
|
|
843
|
+
var l = o._owner, u = w1(o.type, o._source, l ? l.type : null);
|
|
844
|
+
s3.setExtraStackFrame(u);
|
|
771
845
|
} else
|
|
772
|
-
|
|
846
|
+
s3.setExtraStackFrame(null);
|
|
773
847
|
}
|
|
774
|
-
var
|
|
775
|
-
|
|
776
|
-
function
|
|
777
|
-
return typeof
|
|
848
|
+
var T1;
|
|
849
|
+
T1 = !1;
|
|
850
|
+
function L1(o) {
|
|
851
|
+
return typeof o == "object" && o !== null && o.$$typeof === t;
|
|
778
852
|
}
|
|
779
|
-
function
|
|
853
|
+
function n3() {
|
|
780
854
|
{
|
|
781
|
-
if (
|
|
782
|
-
var
|
|
783
|
-
if (
|
|
855
|
+
if (_1.current) {
|
|
856
|
+
var o = K(_1.current.type);
|
|
857
|
+
if (o)
|
|
784
858
|
return `
|
|
785
859
|
|
|
786
|
-
Check the render method of \`` +
|
|
860
|
+
Check the render method of \`` + o + "`.";
|
|
787
861
|
}
|
|
788
862
|
return "";
|
|
789
863
|
}
|
|
790
864
|
}
|
|
791
|
-
function
|
|
865
|
+
function F3(o) {
|
|
792
866
|
return "";
|
|
793
867
|
}
|
|
794
|
-
var
|
|
795
|
-
function
|
|
868
|
+
var o3 = {};
|
|
869
|
+
function W3(o) {
|
|
796
870
|
{
|
|
797
|
-
var l =
|
|
871
|
+
var l = n3();
|
|
798
872
|
if (!l) {
|
|
799
|
-
var
|
|
800
|
-
|
|
873
|
+
var u = typeof o == "string" ? o : o.displayName || o.name;
|
|
874
|
+
u && (l = `
|
|
801
875
|
|
|
802
|
-
Check the top-level render call using <` +
|
|
876
|
+
Check the top-level render call using <` + u + ">.");
|
|
803
877
|
}
|
|
804
878
|
return l;
|
|
805
879
|
}
|
|
806
880
|
}
|
|
807
|
-
function
|
|
881
|
+
function c3(o, l) {
|
|
808
882
|
{
|
|
809
|
-
if (!
|
|
883
|
+
if (!o._store || o._store.validated || o.key != null)
|
|
810
884
|
return;
|
|
811
|
-
|
|
812
|
-
var
|
|
813
|
-
if (
|
|
885
|
+
o._store.validated = !0;
|
|
886
|
+
var u = W3(l);
|
|
887
|
+
if (o3[u])
|
|
814
888
|
return;
|
|
815
|
-
|
|
889
|
+
o3[u] = !0;
|
|
816
890
|
var v = "";
|
|
817
|
-
|
|
891
|
+
o && o._owner && o._owner !== _1.current && (v = " It was passed a child from " + K(o._owner.type) + "."), e1(o), $('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', u, v), e1(null);
|
|
818
892
|
}
|
|
819
893
|
}
|
|
820
|
-
function
|
|
894
|
+
function r3(o, l) {
|
|
821
895
|
{
|
|
822
|
-
if (typeof
|
|
896
|
+
if (typeof o != "object")
|
|
823
897
|
return;
|
|
824
|
-
if (
|
|
825
|
-
for (var
|
|
826
|
-
var v =
|
|
827
|
-
|
|
898
|
+
if (E1(o))
|
|
899
|
+
for (var u = 0; u < o.length; u++) {
|
|
900
|
+
var v = o[u];
|
|
901
|
+
L1(v) && c3(v, l);
|
|
828
902
|
}
|
|
829
|
-
else if (
|
|
830
|
-
|
|
831
|
-
else if (
|
|
832
|
-
var
|
|
833
|
-
if (typeof
|
|
834
|
-
for (var
|
|
835
|
-
|
|
903
|
+
else if (L1(o))
|
|
904
|
+
o._store && (o._store.validated = !0);
|
|
905
|
+
else if (o) {
|
|
906
|
+
var S = c1(o);
|
|
907
|
+
if (typeof S == "function" && S !== o.entries)
|
|
908
|
+
for (var I = S.call(o), m; !(m = I.next()).done; )
|
|
909
|
+
L1(m.value) && c3(m.value, l);
|
|
836
910
|
}
|
|
837
911
|
}
|
|
838
912
|
}
|
|
839
|
-
function
|
|
913
|
+
function H3(o) {
|
|
840
914
|
{
|
|
841
|
-
var l =
|
|
915
|
+
var l = o.type;
|
|
842
916
|
if (l == null || typeof l == "string")
|
|
843
917
|
return;
|
|
844
|
-
var
|
|
918
|
+
var u;
|
|
845
919
|
if (typeof l == "function")
|
|
846
|
-
|
|
920
|
+
u = l.propTypes;
|
|
847
921
|
else if (typeof l == "object" && (l.$$typeof === f || // Note: Memo only checks outer props here.
|
|
848
922
|
// Inner props are checked in the reconciler.
|
|
849
|
-
l.$$typeof ===
|
|
850
|
-
|
|
923
|
+
l.$$typeof === R))
|
|
924
|
+
u = l.propTypes;
|
|
851
925
|
else
|
|
852
926
|
return;
|
|
853
|
-
if (
|
|
854
|
-
var v =
|
|
855
|
-
|
|
856
|
-
} else if (l.PropTypes !== void 0 && !
|
|
857
|
-
|
|
858
|
-
var
|
|
859
|
-
|
|
860
|
-
}
|
|
861
|
-
typeof l.getDefaultProps == "function" && !l.getDefaultProps.isReactClassApproved &&
|
|
927
|
+
if (u) {
|
|
928
|
+
var v = K(l);
|
|
929
|
+
_3(u, o.props, "prop", v, o);
|
|
930
|
+
} else if (l.PropTypes !== void 0 && !T1) {
|
|
931
|
+
T1 = !0;
|
|
932
|
+
var S = K(l);
|
|
933
|
+
$("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", S || "Unknown");
|
|
934
|
+
}
|
|
935
|
+
typeof l.getDefaultProps == "function" && !l.getDefaultProps.isReactClassApproved && $("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
|
862
936
|
}
|
|
863
937
|
}
|
|
864
|
-
function
|
|
938
|
+
function K3(o) {
|
|
865
939
|
{
|
|
866
|
-
for (var l = Object.keys(
|
|
867
|
-
var v = l[
|
|
940
|
+
for (var l = Object.keys(o.props), u = 0; u < l.length; u++) {
|
|
941
|
+
var v = l[u];
|
|
868
942
|
if (v !== "children" && v !== "key") {
|
|
869
|
-
|
|
943
|
+
e1(o), $("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", v), e1(null);
|
|
870
944
|
break;
|
|
871
945
|
}
|
|
872
946
|
}
|
|
873
|
-
|
|
947
|
+
o.ref !== null && (e1(o), $("Invalid attribute `ref` supplied to `React.Fragment`."), e1(null));
|
|
874
948
|
}
|
|
875
949
|
}
|
|
876
|
-
var
|
|
877
|
-
function
|
|
950
|
+
var l3 = {};
|
|
951
|
+
function i3(o, l, u, v, S, I) {
|
|
878
952
|
{
|
|
879
|
-
var
|
|
880
|
-
if (!
|
|
953
|
+
var m = O(o);
|
|
954
|
+
if (!m) {
|
|
881
955
|
var x = "";
|
|
882
|
-
(
|
|
883
|
-
var
|
|
884
|
-
|
|
885
|
-
var
|
|
886
|
-
|
|
887
|
-
}
|
|
888
|
-
var
|
|
889
|
-
if (
|
|
890
|
-
return
|
|
891
|
-
if (
|
|
892
|
-
var
|
|
893
|
-
if (
|
|
956
|
+
(o === void 0 || typeof o == "object" && o !== null && Object.keys(o).length === 0) && (x += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");
|
|
957
|
+
var B = F3();
|
|
958
|
+
B ? x += B : x += n3();
|
|
959
|
+
var _;
|
|
960
|
+
o === null ? _ = "null" : E1(o) ? _ = "array" : o !== void 0 && o.$$typeof === t ? (_ = "<" + (K(o.type) || "Unknown") + " />", x = " Did you accidentally export a JSX literal instead of a component?") : _ = typeof o, $("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", _, x);
|
|
961
|
+
}
|
|
962
|
+
var L = U3(o, l, u, S, I);
|
|
963
|
+
if (L == null)
|
|
964
|
+
return L;
|
|
965
|
+
if (m) {
|
|
966
|
+
var U = l.children;
|
|
967
|
+
if (U !== void 0)
|
|
894
968
|
if (v)
|
|
895
|
-
if (
|
|
896
|
-
for (var
|
|
897
|
-
|
|
898
|
-
Object.freeze && Object.freeze(
|
|
969
|
+
if (E1(U)) {
|
|
970
|
+
for (var t1 = 0; t1 < U.length; t1++)
|
|
971
|
+
r3(U[t1], o);
|
|
972
|
+
Object.freeze && Object.freeze(U);
|
|
899
973
|
} else
|
|
900
|
-
|
|
974
|
+
$("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
|
901
975
|
else
|
|
902
|
-
|
|
903
|
-
}
|
|
904
|
-
if (
|
|
905
|
-
var
|
|
906
|
-
return
|
|
907
|
-
}),
|
|
908
|
-
if (!
|
|
909
|
-
var
|
|
910
|
-
|
|
976
|
+
r3(U, o);
|
|
977
|
+
}
|
|
978
|
+
if (l1.call(l, "key")) {
|
|
979
|
+
var X = K(o), V = Object.keys(l).filter(function(X3) {
|
|
980
|
+
return X3 !== "key";
|
|
981
|
+
}), P1 = V.length > 0 ? "{key: someKey, " + V.join(": ..., ") + ": ...}" : "{key: someKey}";
|
|
982
|
+
if (!l3[X + P1]) {
|
|
983
|
+
var J3 = V.length > 0 ? "{" + V.join(": ..., ") + ": ...}" : "{}";
|
|
984
|
+
$(`A props object containing a "key" prop is being spread into JSX:
|
|
911
985
|
let props = %s;
|
|
912
986
|
<%s {...props} />
|
|
913
987
|
React keys must be passed directly to JSX without using spread:
|
|
914
988
|
let props = %s;
|
|
915
|
-
<%s key={someKey} {...props} />`,
|
|
989
|
+
<%s key={someKey} {...props} />`, P1, X, J3, X), l3[X + P1] = !0;
|
|
916
990
|
}
|
|
917
991
|
}
|
|
918
|
-
return
|
|
992
|
+
return o === c ? K3(L) : H3(L), L;
|
|
919
993
|
}
|
|
920
994
|
}
|
|
921
|
-
function
|
|
922
|
-
return
|
|
995
|
+
function G3(o, l, u) {
|
|
996
|
+
return i3(o, l, u, !0);
|
|
923
997
|
}
|
|
924
|
-
function
|
|
925
|
-
return
|
|
998
|
+
function q3(o, l, u) {
|
|
999
|
+
return i3(o, l, u, !1);
|
|
926
1000
|
}
|
|
927
|
-
var
|
|
928
|
-
|
|
929
|
-
}()),
|
|
1001
|
+
var Y3 = q3, z3 = G3;
|
|
1002
|
+
u1.Fragment = c, u1.jsx = Y3, u1.jsxs = z3;
|
|
1003
|
+
}()), u1;
|
|
1004
|
+
}
|
|
1005
|
+
var v3;
|
|
1006
|
+
function M8() {
|
|
1007
|
+
return v3 || (v3 = 1, process.env.NODE_ENV === "production" ? M1.exports = w8() : M1.exports = x8()), M1.exports;
|
|
930
1008
|
}
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
},
|
|
936
|
-
|
|
937
|
-
return /* @__PURE__ */ s.jsx(s.Fragment, { children: /* @__PURE__ */ s.jsxs("div", { className: `disconnected-message ${D2.mwfit} mx-auto text-center`, children: [
|
|
1009
|
+
var s = M8();
|
|
1010
|
+
const m8 = "_mwfit_ppa3l_1", Z8 = {
|
|
1011
|
+
mwfit: m8
|
|
1012
|
+
}, j8 = () => {
|
|
1013
|
+
const { reconnect: e } = b(), t = g8(), n = f8();
|
|
1014
|
+
return /* @__PURE__ */ s.jsx(s.Fragment, { children: /* @__PURE__ */ s.jsxs("div", { className: `disconnected-message ${Z8.mwfit} mx-auto text-center`, children: [
|
|
938
1015
|
/* @__PURE__ */ s.jsx("h1", { children: "Disconnected" }),
|
|
939
|
-
|
|
940
|
-
|
|
1016
|
+
t && /* @__PURE__ */ s.jsx("h5", { children: t }),
|
|
1017
|
+
n && /* @__PURE__ */ s.jsx("button", { className: "btn btn-secondary btn-lg", onClick: e, children: "Reconnect" })
|
|
941
1018
|
] }) });
|
|
942
1019
|
};
|
|
943
|
-
class
|
|
1020
|
+
class C8 {
|
|
944
1021
|
constructor() {
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
1022
|
+
G(this, "uuid", "current-uuid");
|
|
1023
|
+
G(this, "roomKey", "current-room-key");
|
|
1024
|
+
G(this, "code", "current-code");
|
|
1025
|
+
G(this, "expiry", "current-uuid-expires");
|
|
949
1026
|
}
|
|
950
1027
|
}
|
|
951
|
-
const
|
|
1028
|
+
const g3 = new C8(), j3 = l2({
|
|
952
1029
|
sendMessage: () => null,
|
|
953
1030
|
sendSimpleMessage: () => null,
|
|
954
1031
|
addEventHandler: () => null,
|
|
955
1032
|
removeEventHandler: () => null,
|
|
956
1033
|
reconnect: () => null
|
|
957
1034
|
});
|
|
958
|
-
function
|
|
959
|
-
return sessionStorage.getItem(
|
|
1035
|
+
function S8(e) {
|
|
1036
|
+
return sessionStorage.getItem(e) || "";
|
|
960
1037
|
}
|
|
961
|
-
function
|
|
962
|
-
sessionStorage.setItem(
|
|
1038
|
+
function b8(e, t) {
|
|
1039
|
+
sessionStorage.setItem(e, t);
|
|
963
1040
|
}
|
|
964
|
-
const
|
|
965
|
-
const [
|
|
1041
|
+
const I8 = ({ children: e }) => {
|
|
1042
|
+
const [t, n] = H(), c = i8(), r = a8(), i = u8(), d = p8(), a = w2(), f = d8(), w = h8(), h = v8(), R = h1(null), [A, F] = H(), k = h1({}), Q = i1(
|
|
966
1043
|
async (y) => {
|
|
967
1044
|
try {
|
|
968
|
-
const
|
|
969
|
-
return
|
|
970
|
-
} catch (
|
|
971
|
-
return console.log(
|
|
1045
|
+
const C = await O1.get(`${y}/ui/joinroom?token=${t}`);
|
|
1046
|
+
return C.status === 200 && C.data ? (Z.dispatch(W.setRoomData(C.data)), !0) : !1;
|
|
1047
|
+
} catch (C) {
|
|
1048
|
+
return console.log(C), h ? !0 : C instanceof t2 && C.response && C.response.status === 498 ? (console.error("Invalid token. Unable to join room"), Z.dispatch(z.setErrorMessage(`Token ${t} is invalid. Unable to join room`)), !1) : (console.error("Error getting room data", C), C instanceof Error ? Z.dispatch(z.setErrorMessage(C.message)) : Z.dispatch(z.setErrorMessage("Error getting room data")), !1);
|
|
972
1049
|
}
|
|
973
1050
|
},
|
|
974
|
-
[
|
|
975
|
-
),
|
|
976
|
-
const y = `${
|
|
1051
|
+
[t, h]
|
|
1052
|
+
), c1 = i1(() => {
|
|
1053
|
+
const y = `${a.gatewayAppPath}?uuid=${f}&roomKey=${r}`;
|
|
977
1054
|
window.location.href = w ? `${y}&Code=${w}` : y;
|
|
978
|
-
}, [
|
|
979
|
-
(y,
|
|
980
|
-
|
|
1055
|
+
}, [a.gatewayAppPath, r, f, w]), D = i1(
|
|
1056
|
+
(y, C) => {
|
|
1057
|
+
R.current && c && R.current.send(JSON.stringify({ type: y, clientId: i, content: C }));
|
|
981
1058
|
},
|
|
982
|
-
[
|
|
983
|
-
),
|
|
984
|
-
|
|
985
|
-
},
|
|
986
|
-
(y,
|
|
987
|
-
|
|
1059
|
+
[c, i]
|
|
1060
|
+
), $ = (y, C) => {
|
|
1061
|
+
D(y, { value: C });
|
|
1062
|
+
}, C1 = i1(
|
|
1063
|
+
(y, C, g1) => {
|
|
1064
|
+
k.current[y] || (k.current[y] = {}), k.current[y][C] = g1, console.log("event handler added", y, C);
|
|
988
1065
|
},
|
|
989
1066
|
[]
|
|
990
|
-
),
|
|
991
|
-
|
|
1067
|
+
), S1 = i1((y, C) => {
|
|
1068
|
+
k.current[y] && (delete k.current[y][C], console.log("event handler removed", y, C));
|
|
992
1069
|
}, []);
|
|
993
|
-
return
|
|
994
|
-
let
|
|
995
|
-
|
|
996
|
-
}, []),
|
|
1070
|
+
return o1(() => {
|
|
1071
|
+
let C = new URLSearchParams(window.location.search).get("token");
|
|
1072
|
+
C ? (console.log("saving token: ", C), b8(g3.uuid, C)) : (C = S8(g3.uuid), console.log("loading token: ", C)), n(C), d();
|
|
1073
|
+
}, []), o1(() => {
|
|
997
1074
|
async function y() {
|
|
998
|
-
if (console.log("effect is running"), !(!
|
|
1075
|
+
if (console.log("effect is running"), !(!a.apiPath || A || !t || !await Q(a.apiPath)) && !R.current) {
|
|
999
1076
|
console.log("connecting to websocket");
|
|
1000
|
-
const
|
|
1001
|
-
|
|
1002
|
-
console.log("connected",
|
|
1003
|
-
},
|
|
1004
|
-
console.log(
|
|
1005
|
-
},
|
|
1006
|
-
if (console.log("disconnected: ",
|
|
1007
|
-
console.log("user code changed"),
|
|
1077
|
+
const b1 = `${a.apiPath.replace("http", "ws")}/ui/join/${t}`, q = new WebSocket(b1);
|
|
1078
|
+
R.current = q, q.onopen = (O) => {
|
|
1079
|
+
console.log("connected", O.type, O.target), Z.dispatch(W.setWebsocketIsConnected(!0));
|
|
1080
|
+
}, q.onerror = (O) => {
|
|
1081
|
+
console.log(O);
|
|
1082
|
+
}, q.onclose = (O) => {
|
|
1083
|
+
if (console.log("disconnected: ", O.reason, O.code), O.code === 4e3) {
|
|
1084
|
+
console.log("user code changed"), Z.dispatch(W.setUserCode({ userCode: "", qrUrl: "" })), Z.dispatch(z.setErrorMessage("User code changed. Click reconnect to enter the new code")), Z.dispatch(z.setShowReconnect(!0)), Z.dispatch(W.setWebsocketIsConnected(!1)), Z.dispatch(s1.clearDevices()), Z.dispatch(n1.clearRooms());
|
|
1008
1085
|
return;
|
|
1009
1086
|
}
|
|
1010
|
-
if (
|
|
1011
|
-
console.log("processor disconnected"),
|
|
1087
|
+
if (O.code === 4001 && !h) {
|
|
1088
|
+
console.log("processor disconnected"), Z.dispatch(z.setErrorMessage("Processor has disconnected. Click Reconnect")), Z.dispatch(z.setShowReconnect(!0)), Z.dispatch(W.setWebsocketIsConnected(!1)), Z.dispatch(s1.clearDevices()), Z.dispatch(n1.clearRooms());
|
|
1012
1089
|
return;
|
|
1013
1090
|
}
|
|
1014
|
-
if (
|
|
1015
|
-
console.log("room combination changed"),
|
|
1091
|
+
if (O.code === 4002) {
|
|
1092
|
+
console.log("room combination changed"), Z.dispatch(z.setErrorMessage("Room combination changed. Click Reconnect to re-join the room")), Z.dispatch(z.setShowReconnect(!0)), Z.dispatch(W.setWebsocketIsConnected(!1)), Z.dispatch(s1.clearDevices()), Z.dispatch(n1.clearRooms());
|
|
1016
1093
|
return;
|
|
1017
1094
|
}
|
|
1018
|
-
if (
|
|
1095
|
+
if (R.current)
|
|
1019
1096
|
console.log("WebSocket closed by server.");
|
|
1020
1097
|
else {
|
|
1021
1098
|
console.log("WebSocket closed by client.");
|
|
1022
1099
|
return;
|
|
1023
1100
|
}
|
|
1024
|
-
|
|
1025
|
-
},
|
|
1101
|
+
A || (Z.dispatch(W.setWebsocketIsConnected(!1)), Z.dispatch(s1.clearDevices()), Z.dispatch(n1.clearRooms()), F(!0), setTimeout(() => F(void 0), 5e3));
|
|
1102
|
+
}, q.onmessage = (O) => {
|
|
1026
1103
|
try {
|
|
1027
|
-
const
|
|
1028
|
-
if (console.log(
|
|
1029
|
-
|
|
1104
|
+
const E = JSON.parse(O.data);
|
|
1105
|
+
if (console.log(E), E.type === "close") {
|
|
1106
|
+
q.close(4001, E.content);
|
|
1030
1107
|
return;
|
|
1031
1108
|
}
|
|
1032
|
-
if (
|
|
1033
|
-
switch (
|
|
1109
|
+
if (E.type.startsWith("/system/"))
|
|
1110
|
+
switch (E.type) {
|
|
1034
1111
|
case "/system/touchpanelKey":
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1112
|
+
Z.dispatch(
|
|
1113
|
+
W.setTouchpanelKey(
|
|
1114
|
+
E.content
|
|
1038
1115
|
)
|
|
1039
1116
|
);
|
|
1040
1117
|
break;
|
|
1041
1118
|
case "/system/roomKey": {
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1119
|
+
Z.dispatch(n1.clearRooms()), Z.dispatch(s1.clearDevices()), Z.dispatch(
|
|
1120
|
+
W.setCurrentRoomKey(
|
|
1121
|
+
E.content
|
|
1045
1122
|
)
|
|
1046
1123
|
);
|
|
1047
1124
|
break;
|
|
1048
1125
|
}
|
|
1049
1126
|
case "/system/userCodeChanged":
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1127
|
+
Z.dispatch(
|
|
1128
|
+
W.setUserCode(
|
|
1129
|
+
E.content
|
|
1053
1130
|
)
|
|
1054
1131
|
);
|
|
1055
1132
|
break;
|
|
@@ -1057,539 +1134,539 @@ const k2 = ({ children: t }) => {
|
|
|
1057
1134
|
window.location.reload();
|
|
1058
1135
|
break;
|
|
1059
1136
|
default:
|
|
1060
|
-
console.log("unhandled system message",
|
|
1137
|
+
console.log("unhandled system message", E);
|
|
1061
1138
|
break;
|
|
1062
1139
|
}
|
|
1063
|
-
else if (
|
|
1064
|
-
console.log("event message received",
|
|
1065
|
-
const
|
|
1066
|
-
|
|
1140
|
+
else if (E.type.startsWith("/event/")) {
|
|
1141
|
+
console.log("event message received", E);
|
|
1142
|
+
const N = k.current[E.type];
|
|
1143
|
+
N || console.log("no handlers found for event type", E.type), N && Object.values(N).forEach((K) => {
|
|
1067
1144
|
try {
|
|
1068
|
-
|
|
1069
|
-
} catch (
|
|
1070
|
-
console.error(
|
|
1145
|
+
K(E);
|
|
1146
|
+
} catch (Y) {
|
|
1147
|
+
console.error(Y);
|
|
1071
1148
|
}
|
|
1072
1149
|
});
|
|
1073
|
-
} else
|
|
1074
|
-
} catch (
|
|
1075
|
-
console.log(
|
|
1150
|
+
} else E.type.startsWith("/room/") ? Z.dispatch(n1.setRoomState(E)) : E.type.startsWith("/device/") && Z.dispatch(s1.setDeviceState(E));
|
|
1151
|
+
} catch (E) {
|
|
1152
|
+
console.log(E);
|
|
1076
1153
|
}
|
|
1077
1154
|
};
|
|
1078
1155
|
}
|
|
1079
1156
|
}
|
|
1080
1157
|
return y(), () => {
|
|
1081
|
-
|
|
1158
|
+
R.current && R.current.close(), R.current = null;
|
|
1082
1159
|
};
|
|
1083
|
-
}, [
|
|
1084
|
-
!
|
|
1085
|
-
}, [
|
|
1086
|
-
|
|
1160
|
+
}, [a.apiPath, Q, t, A, h]), o1(() => {
|
|
1161
|
+
!r || !c || (console.log("clientId: ", i), i && (console.log("requesting status from room: ", r), D(`/room/${r}/status`, null)));
|
|
1162
|
+
}, [r, i, c, D]), /* @__PURE__ */ s.jsx(
|
|
1163
|
+
j3.Provider,
|
|
1087
1164
|
{
|
|
1088
1165
|
value: {
|
|
1089
|
-
sendMessage:
|
|
1090
|
-
sendSimpleMessage:
|
|
1091
|
-
addEventHandler:
|
|
1092
|
-
removeEventHandler:
|
|
1093
|
-
reconnect:
|
|
1166
|
+
sendMessage: D,
|
|
1167
|
+
sendSimpleMessage: $,
|
|
1168
|
+
addEventHandler: C1,
|
|
1169
|
+
removeEventHandler: S1,
|
|
1170
|
+
reconnect: c1
|
|
1094
1171
|
},
|
|
1095
|
-
children:
|
|
1172
|
+
children: c ? e : /* @__PURE__ */ s.jsx(j8, {})
|
|
1096
1173
|
}
|
|
1097
1174
|
);
|
|
1098
|
-
},
|
|
1099
|
-
function
|
|
1100
|
-
return
|
|
1175
|
+
}, ie = ({ children: e }) => /* @__PURE__ */ s.jsx(o2, { store: Z, children: /* @__PURE__ */ s.jsx(I8, { children: e }) });
|
|
1176
|
+
function b() {
|
|
1177
|
+
return i2(j3);
|
|
1101
1178
|
}
|
|
1102
|
-
function
|
|
1103
|
-
onPress:
|
|
1104
|
-
onRelease:
|
|
1105
|
-
onHold:
|
|
1106
|
-
holdTimeMs:
|
|
1179
|
+
function R8({
|
|
1180
|
+
onPress: e,
|
|
1181
|
+
onRelease: t,
|
|
1182
|
+
onHold: n,
|
|
1183
|
+
holdTimeMs: c = 500
|
|
1107
1184
|
}) {
|
|
1108
|
-
const
|
|
1185
|
+
const r = h1(null), i = h1(!1);
|
|
1109
1186
|
function d() {
|
|
1110
|
-
i.current = !0,
|
|
1111
|
-
|
|
1112
|
-
},
|
|
1187
|
+
i.current = !0, e == null || e(), r.current = setTimeout(() => {
|
|
1188
|
+
n == null || n(), r.current = null;
|
|
1189
|
+
}, c);
|
|
1113
1190
|
}
|
|
1114
|
-
function
|
|
1115
|
-
i.current = !1,
|
|
1191
|
+
function a() {
|
|
1192
|
+
i.current = !1, t == null || t(), r.current && (clearTimeout(r.current), r.current = null);
|
|
1116
1193
|
}
|
|
1117
1194
|
function f() {
|
|
1118
|
-
i.current &&
|
|
1195
|
+
i.current && a();
|
|
1119
1196
|
}
|
|
1120
1197
|
return {
|
|
1121
1198
|
onPointerDown: d,
|
|
1122
|
-
onPointerUp:
|
|
1199
|
+
onPointerUp: a,
|
|
1123
1200
|
onPointerLeave: f
|
|
1124
1201
|
};
|
|
1125
1202
|
}
|
|
1126
|
-
function g(
|
|
1127
|
-
const { sendMessage:
|
|
1203
|
+
function g(e, t) {
|
|
1204
|
+
const { sendMessage: c } = b(), r = h1(null);
|
|
1128
1205
|
function i() {
|
|
1129
|
-
|
|
1130
|
-
|
|
1206
|
+
c(`${e}/${t}`, { value: "pressed" }), r.current || (r.current = setInterval(() => {
|
|
1207
|
+
c(`${e}/${t}`, { value: "held" });
|
|
1131
1208
|
}, 250));
|
|
1132
1209
|
}
|
|
1133
1210
|
function d() {
|
|
1134
|
-
|
|
1211
|
+
r.current && (clearInterval(r.current), r.current = null), c(`${e}/${t}`, { value: "released" });
|
|
1135
1212
|
}
|
|
1136
|
-
return
|
|
1213
|
+
return R8({ onPress: i, onRelease: d });
|
|
1137
1214
|
}
|
|
1138
|
-
function
|
|
1139
|
-
const { sendMessage:
|
|
1140
|
-
return
|
|
1141
|
-
volumeState:
|
|
1142
|
-
volumeUp:
|
|
1215
|
+
function C3(e, t) {
|
|
1216
|
+
const { sendMessage: n, sendSimpleMessage: c } = b(), r = g(`${e}`, "volumeUp"), i = g(`${e}`, "volumeDown");
|
|
1217
|
+
return t ? {
|
|
1218
|
+
volumeState: t,
|
|
1219
|
+
volumeUp: r,
|
|
1143
1220
|
volumeDown: i,
|
|
1144
|
-
setLevel: (h) =>
|
|
1145
|
-
muteToggle: () =>
|
|
1146
|
-
muteOn: () =>
|
|
1147
|
-
muteOff: () =>
|
|
1221
|
+
setLevel: (h) => c(`${e}/level`, h),
|
|
1222
|
+
muteToggle: () => n(`${e}/muteToggle`, null),
|
|
1223
|
+
muteOn: () => n(`${e}/muteOn`, null),
|
|
1224
|
+
muteOff: () => n(`${e}/muteOff`, null)
|
|
1148
1225
|
} : void 0;
|
|
1149
1226
|
}
|
|
1150
|
-
function
|
|
1151
|
-
const { sendMessage:
|
|
1152
|
-
return
|
|
1153
|
-
volumeState:
|
|
1154
|
-
volumeUp:
|
|
1227
|
+
function ae(e, t) {
|
|
1228
|
+
const { sendMessage: n, sendSimpleMessage: c } = b(), r = g(`${e}`, "volumeUp"), i = g(`${e}`, "volumeDown");
|
|
1229
|
+
return t ? {
|
|
1230
|
+
volumeState: t,
|
|
1231
|
+
volumeUp: r,
|
|
1155
1232
|
volumeDown: i,
|
|
1156
|
-
setLevel: (h) =>
|
|
1157
|
-
muteToggle: () =>
|
|
1158
|
-
muteOn: () =>
|
|
1159
|
-
muteOff: () =>
|
|
1233
|
+
setLevel: (h) => c(`${e}/level`, h),
|
|
1234
|
+
muteToggle: () => n(`${e}/muteToggle`, null),
|
|
1235
|
+
muteOn: () => n(`${e}/muteOn`, null),
|
|
1236
|
+
muteOff: () => n(`${e}/muteOff`, null)
|
|
1160
1237
|
} : void 0;
|
|
1161
1238
|
}
|
|
1162
|
-
function
|
|
1163
|
-
const
|
|
1164
|
-
return
|
|
1239
|
+
function y8(e) {
|
|
1240
|
+
const t = T(e), n = `/device/${e}`;
|
|
1241
|
+
return C3(n, t == null ? void 0 : t.volume);
|
|
1165
1242
|
}
|
|
1166
|
-
function
|
|
1167
|
-
const { sendMessage:
|
|
1243
|
+
function S3(e) {
|
|
1244
|
+
const { sendMessage: t } = b();
|
|
1168
1245
|
return { powerOn: () => {
|
|
1169
|
-
|
|
1246
|
+
t(`/device/${e}/powerOn`, null);
|
|
1170
1247
|
}, powerOff: () => {
|
|
1171
|
-
|
|
1248
|
+
t(`/device/${e}/powerOff`, null);
|
|
1172
1249
|
}, powerToggle: () => {
|
|
1173
|
-
|
|
1250
|
+
t(`/device/${e}/powerToggle`, null);
|
|
1174
1251
|
} };
|
|
1175
1252
|
}
|
|
1176
|
-
function
|
|
1177
|
-
const { sendMessage:
|
|
1178
|
-
return console.log("deviceState",
|
|
1179
|
-
|
|
1253
|
+
function V1(e) {
|
|
1254
|
+
const { sendMessage: t } = b(), n = T(e);
|
|
1255
|
+
return console.log("deviceState", n), n ? { itemsState: n, selectItem: (r) => {
|
|
1256
|
+
t(`/device/${e}/${r}`, null);
|
|
1180
1257
|
} } : void 0;
|
|
1181
1258
|
}
|
|
1182
|
-
function
|
|
1183
|
-
const { sendMessage:
|
|
1184
|
-
|
|
1185
|
-
},
|
|
1186
|
-
if ((
|
|
1187
|
-
Object.keys(
|
|
1188
|
-
|
|
1259
|
+
function E8(e) {
|
|
1260
|
+
const { sendMessage: t } = b(), n = T(e), c = () => {
|
|
1261
|
+
t(`/device/${e}/setDefaultChannelLevels`, null);
|
|
1262
|
+
}, r = () => {
|
|
1263
|
+
if ((n == null ? void 0 : n.levelControls) === void 0) return;
|
|
1264
|
+
Object.keys(n == null ? void 0 : n.levelControls).forEach((a) => {
|
|
1265
|
+
t(`/device/${e}/${a}/fullStatus`, null);
|
|
1189
1266
|
});
|
|
1190
1267
|
};
|
|
1191
|
-
return
|
|
1268
|
+
return n ? { levelControls: n.levelControls, setDefaultChannelLevels: c, getFullStatus: r } : void 0;
|
|
1192
1269
|
}
|
|
1193
|
-
function
|
|
1194
|
-
const
|
|
1195
|
-
if (
|
|
1270
|
+
function ue(e) {
|
|
1271
|
+
const t = T(e), n = S3(e), c = V1(e), r = V1(e), i = y8(e), d = E8(e);
|
|
1272
|
+
if (t)
|
|
1196
1273
|
return {
|
|
1197
|
-
avrState:
|
|
1198
|
-
powerControl:
|
|
1199
|
-
inputControl:
|
|
1200
|
-
surroundSoundModes:
|
|
1274
|
+
avrState: t,
|
|
1275
|
+
powerControl: n,
|
|
1276
|
+
inputControl: c,
|
|
1277
|
+
surroundSoundModes: r,
|
|
1201
1278
|
surroundChannels: d,
|
|
1202
1279
|
mainVolumeControl: i
|
|
1203
1280
|
};
|
|
1204
1281
|
}
|
|
1205
|
-
const
|
|
1206
|
-
const [
|
|
1207
|
-
return
|
|
1282
|
+
const de = ({ className: e }) => {
|
|
1283
|
+
const [t, n] = H();
|
|
1284
|
+
return o1(() => {
|
|
1208
1285
|
setInterval(() => {
|
|
1209
|
-
const
|
|
1210
|
-
|
|
1286
|
+
const c = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
|
|
1287
|
+
n(c);
|
|
1211
1288
|
}, 1e3);
|
|
1212
|
-
}, []), /* @__PURE__ */ s.jsxs("div", { className:
|
|
1213
|
-
|
|
1289
|
+
}, []), /* @__PURE__ */ s.jsxs("div", { className: e, children: [
|
|
1290
|
+
t,
|
|
1214
1291
|
" new change"
|
|
1215
1292
|
] });
|
|
1216
1293
|
};
|
|
1217
|
-
function
|
|
1218
|
-
const { sendMessage:
|
|
1219
|
-
return
|
|
1220
|
-
|
|
1294
|
+
function he(e) {
|
|
1295
|
+
const { sendMessage: t } = b(), n = T(e), c = `/device/${e}`;
|
|
1296
|
+
return n ? { state: n, recallPreset: (d, a) => {
|
|
1297
|
+
t(`${c}/presets/recall`, { deviceKey: d, preset: a });
|
|
1221
1298
|
}, savePresets: (d) => {
|
|
1222
|
-
|
|
1299
|
+
t(`${c}/presets/save`, d);
|
|
1223
1300
|
} } : void 0;
|
|
1224
1301
|
}
|
|
1225
|
-
function
|
|
1226
|
-
const
|
|
1227
|
-
if (
|
|
1228
|
-
return { endpointState:
|
|
1302
|
+
function ve(e) {
|
|
1303
|
+
const t = T(e);
|
|
1304
|
+
if (t)
|
|
1305
|
+
return { endpointState: t };
|
|
1229
1306
|
}
|
|
1230
|
-
function
|
|
1231
|
-
const
|
|
1232
|
-
return { channelUp:
|
|
1307
|
+
function ge(e) {
|
|
1308
|
+
const t = `/device/${e}`, n = g(t, "chanUp"), c = g(t, "chanDown"), r = g(t, "lastChan"), i = g(t, "guide"), d = g(t, "info"), a = g(t, "exit");
|
|
1309
|
+
return { channelUp: n, channelDown: c, lastChannel: r, guide: i, info: d, exit: a };
|
|
1233
1310
|
}
|
|
1234
|
-
function
|
|
1235
|
-
const
|
|
1236
|
-
return { red:
|
|
1311
|
+
function fe(e) {
|
|
1312
|
+
const t = `/device/${e}`, n = g(t, "red"), c = g(t, "green"), r = g(t, "yellow"), i = g(t, "blue");
|
|
1313
|
+
return { red: n, green: c, yellow: r, blue: i };
|
|
1237
1314
|
}
|
|
1238
|
-
function
|
|
1239
|
-
const
|
|
1240
|
-
if (
|
|
1315
|
+
function pe(e) {
|
|
1316
|
+
const t = T(e);
|
|
1317
|
+
if (t)
|
|
1241
1318
|
return {
|
|
1242
|
-
communicationMonitorState:
|
|
1319
|
+
communicationMonitorState: t
|
|
1243
1320
|
};
|
|
1244
1321
|
}
|
|
1245
|
-
function
|
|
1246
|
-
const
|
|
1247
|
-
if (
|
|
1248
|
-
return
|
|
1322
|
+
function we(e) {
|
|
1323
|
+
const t = T(e);
|
|
1324
|
+
if (t)
|
|
1325
|
+
return t.deviceInfo || void 0;
|
|
1249
1326
|
}
|
|
1250
|
-
function
|
|
1251
|
-
const
|
|
1252
|
-
return { up:
|
|
1327
|
+
function xe(e) {
|
|
1328
|
+
const t = `/device/${e}`, n = g(t, "up"), c = g(t, "down"), r = g(t, "left"), i = g(t, "right"), d = g(t, "select"), a = g(t, "menu"), f = g(t, "exit");
|
|
1329
|
+
return { up: n, down: c, left: r, right: i, select: d, menu: a, exit: f };
|
|
1253
1330
|
}
|
|
1254
|
-
function
|
|
1255
|
-
const { sendMessage:
|
|
1256
|
-
return { recallPreset: (
|
|
1257
|
-
|
|
1331
|
+
function Me(e) {
|
|
1332
|
+
const { sendMessage: t } = b();
|
|
1333
|
+
return { recallPreset: (c) => {
|
|
1334
|
+
t(`/device/${e}/recallPreset`, c);
|
|
1258
1335
|
} };
|
|
1259
1336
|
}
|
|
1260
|
-
function
|
|
1261
|
-
const
|
|
1262
|
-
return { dvrList:
|
|
1337
|
+
function me(e) {
|
|
1338
|
+
const t = `/device/${e}`, n = g(t, "dvrList"), c = g(t, "record");
|
|
1339
|
+
return { dvrList: n, record: c };
|
|
1263
1340
|
}
|
|
1264
|
-
function
|
|
1265
|
-
const { sendMessage:
|
|
1266
|
-
return
|
|
1267
|
-
|
|
1341
|
+
function Ze(e) {
|
|
1342
|
+
const { sendMessage: t } = b(), n = T(e);
|
|
1343
|
+
return n ? { roomCombinerState: n, setAutoMode: () => {
|
|
1344
|
+
t(`/device/${e}/setAutoMode`, null);
|
|
1268
1345
|
}, setManualMode: () => {
|
|
1269
|
-
|
|
1346
|
+
t(`/device/${e}/setManualMode`, null);
|
|
1270
1347
|
}, toggleMode: () => {
|
|
1271
|
-
|
|
1348
|
+
t(`/device/${e}/toggleMode`, null);
|
|
1272
1349
|
}, togglePartitionState: (f) => {
|
|
1273
|
-
|
|
1350
|
+
t(`/device/${e}/togglePartitionState`, f);
|
|
1274
1351
|
}, setRoomCombinationScenario: (f) => {
|
|
1275
|
-
|
|
1352
|
+
t(`/device/${e}/setRoomCombinationScenario`, f);
|
|
1276
1353
|
} } : void 0;
|
|
1277
1354
|
}
|
|
1278
|
-
function
|
|
1279
|
-
const
|
|
1280
|
-
if (
|
|
1281
|
-
return { state:
|
|
1355
|
+
function je(e) {
|
|
1356
|
+
const t = T(e);
|
|
1357
|
+
if (t)
|
|
1358
|
+
return { state: t };
|
|
1282
1359
|
}
|
|
1283
|
-
function
|
|
1284
|
-
const { sendMessage:
|
|
1360
|
+
function Ce(e) {
|
|
1361
|
+
const { sendMessage: t, sendSimpleMessage: n } = b(), c = T(e), r = Q2(e), i = c || r;
|
|
1285
1362
|
return i ? {
|
|
1286
1363
|
levelState: i,
|
|
1287
|
-
setLevel: (h,
|
|
1288
|
-
muteToggle: (h) =>
|
|
1289
|
-
muteOn: (h) =>
|
|
1290
|
-
muteOff: (h) =>
|
|
1364
|
+
setLevel: (h, R) => n(`${h}/level`, R),
|
|
1365
|
+
muteToggle: (h) => t(`${h}/muteToggle`, null),
|
|
1366
|
+
muteOn: (h) => t(`${h}/muteOn`, null),
|
|
1367
|
+
muteOff: (h) => t(`${h}/muteOff`, null)
|
|
1291
1368
|
} : void 0;
|
|
1292
1369
|
}
|
|
1293
|
-
function
|
|
1294
|
-
const { sendMessage:
|
|
1295
|
-
return
|
|
1296
|
-
|
|
1370
|
+
function Se(e) {
|
|
1371
|
+
const { sendMessage: t } = b(), n = T(e);
|
|
1372
|
+
return n ? { lightingState: n, selectScene: (r) => {
|
|
1373
|
+
t(`/device/${e}/selectScene`, r);
|
|
1297
1374
|
} } : void 0;
|
|
1298
1375
|
}
|
|
1299
|
-
function
|
|
1300
|
-
const { sendMessage:
|
|
1301
|
-
return
|
|
1302
|
-
|
|
1376
|
+
function be(e) {
|
|
1377
|
+
const { sendMessage: t } = b(), n = T(e);
|
|
1378
|
+
return n ? { matrixRoutingState: n, setRoute: (r) => {
|
|
1379
|
+
t(`/device/${e}/route`, r);
|
|
1303
1380
|
} } : void 0;
|
|
1304
1381
|
}
|
|
1305
|
-
function
|
|
1306
|
-
const { sendMessage:
|
|
1382
|
+
function Ie(e) {
|
|
1383
|
+
const { sendMessage: t } = b();
|
|
1307
1384
|
return { closeApp: () => {
|
|
1308
|
-
|
|
1385
|
+
t(`/device/${e}/closeWebViewController`, null);
|
|
1309
1386
|
} };
|
|
1310
1387
|
}
|
|
1311
|
-
function
|
|
1312
|
-
const
|
|
1313
|
-
return { digit0:
|
|
1388
|
+
function Re(e) {
|
|
1389
|
+
const t = `/device/${e}`, n = g(t, "num0"), c = g(t, "num1"), r = g(t, "num2"), i = g(t, "num3"), d = g(t, "num4"), a = g(t, "num5"), f = g(t, "num6"), w = g(t, "num7"), h = g(t, "num8"), R = g(t, "num9"), A = g(t, "numDash"), F = g(t, "numEnter");
|
|
1390
|
+
return { digit0: n, digit1: c, digit2: r, digit3: i, digit4: d, digit5: a, digit6: f, digit7: w, digit8: h, digit9: R, keypadAccessoryButton1: A, keypadAccessoryButton2: F };
|
|
1314
1391
|
}
|
|
1315
|
-
function
|
|
1316
|
-
const { sendMessage:
|
|
1317
|
-
return
|
|
1318
|
-
|
|
1392
|
+
function ye(e) {
|
|
1393
|
+
const { sendMessage: t } = b(), n = T(e);
|
|
1394
|
+
return n ? { projectorScreenLiftControlState: n, raise: () => {
|
|
1395
|
+
t(`/device/${e}/raise`, null);
|
|
1319
1396
|
}, lower: () => {
|
|
1320
|
-
|
|
1397
|
+
t(`/device/${e}/lower`, null);
|
|
1321
1398
|
} } : void 0;
|
|
1322
1399
|
}
|
|
1323
|
-
function
|
|
1324
|
-
const { sendMessage:
|
|
1325
|
-
return
|
|
1326
|
-
|
|
1400
|
+
function Ee(e) {
|
|
1401
|
+
const { sendMessage: t } = b(), n = j1(e);
|
|
1402
|
+
return n ? { roomEventScheduleState: n, save: (r) => {
|
|
1403
|
+
t(`/room/${e}/saveScheduledEvents`, r);
|
|
1327
1404
|
} } : void 0;
|
|
1328
1405
|
}
|
|
1329
|
-
function
|
|
1330
|
-
const { sendMessage:
|
|
1406
|
+
function _e(e) {
|
|
1407
|
+
const { sendMessage: t } = b();
|
|
1331
1408
|
return { runDefaultPresentRoute: () => {
|
|
1332
|
-
|
|
1409
|
+
t(`/room/${e}/defaultsource`, {});
|
|
1333
1410
|
} };
|
|
1334
1411
|
}
|
|
1335
|
-
function
|
|
1336
|
-
const { sendMessage:
|
|
1337
|
-
return { runDirectRoute: (
|
|
1338
|
-
|
|
1412
|
+
function Te(e) {
|
|
1413
|
+
const { sendMessage: t } = b();
|
|
1414
|
+
return { runDirectRoute: (c) => {
|
|
1415
|
+
t(`/room/${e}/directRoute`, c);
|
|
1339
1416
|
} };
|
|
1340
1417
|
}
|
|
1341
|
-
function
|
|
1342
|
-
const { sendMessage:
|
|
1343
|
-
return { routingState:
|
|
1344
|
-
|
|
1418
|
+
function Le(e) {
|
|
1419
|
+
const { sendMessage: t } = b();
|
|
1420
|
+
return { routingState: T(e), runRoute: (r) => {
|
|
1421
|
+
t(`/room/${e}/source`, r);
|
|
1345
1422
|
} };
|
|
1346
1423
|
}
|
|
1347
|
-
function
|
|
1348
|
-
const
|
|
1349
|
-
return { dvrList:
|
|
1424
|
+
function Pe(e) {
|
|
1425
|
+
const t = `/device/${e}`, n = g(t, "chanUp"), c = g(t, "chanDown");
|
|
1426
|
+
return { dvrList: n, replay: c };
|
|
1350
1427
|
}
|
|
1351
|
-
function
|
|
1352
|
-
const { sendMessage:
|
|
1353
|
-
return
|
|
1354
|
-
|
|
1428
|
+
function De(e) {
|
|
1429
|
+
const { sendMessage: t } = b(), n = T(e);
|
|
1430
|
+
return n ? { shadeState: n, shadeUp: () => {
|
|
1431
|
+
t(`/device/${e}/shadeUp`, null);
|
|
1355
1432
|
}, shadeDown: () => {
|
|
1356
|
-
|
|
1433
|
+
t(`/device/${e}/shadeDown`, null);
|
|
1357
1434
|
}, stopOrPreset: () => {
|
|
1358
|
-
|
|
1435
|
+
t(`/device/${e}/stopOrPreset`, null);
|
|
1359
1436
|
} } : void 0;
|
|
1360
1437
|
}
|
|
1361
|
-
function
|
|
1362
|
-
const { sendMessage:
|
|
1363
|
-
return
|
|
1364
|
-
|
|
1438
|
+
function $e(e) {
|
|
1439
|
+
const { sendMessage: t } = b(), n = j1(e);
|
|
1440
|
+
return n ? { shutdownPromptTimerState: n, setShutdownPromptSeconds: (a) => {
|
|
1441
|
+
t(`/room/${e}/setShutdownPromptSeconds`, a);
|
|
1365
1442
|
}, shutdownStart: () => {
|
|
1366
|
-
|
|
1443
|
+
t(`/room/${e}/shutdownStart`, null);
|
|
1367
1444
|
}, shutdownEnd: () => {
|
|
1368
|
-
|
|
1445
|
+
t(`/room/${e}/shutdownEnd`, null);
|
|
1369
1446
|
}, shutdownCancel: () => {
|
|
1370
|
-
|
|
1447
|
+
t(`/room/${e}/shutdownCancel`, null);
|
|
1371
1448
|
} } : void 0;
|
|
1372
1449
|
}
|
|
1373
|
-
function
|
|
1374
|
-
const { sendMessage:
|
|
1375
|
-
return
|
|
1376
|
-
|
|
1450
|
+
function Ae(e) {
|
|
1451
|
+
const { sendMessage: t } = b(), n = T(e);
|
|
1452
|
+
return n ? { switchedOutputState: n, on: () => {
|
|
1453
|
+
t(`/device/${e}/on`, null);
|
|
1377
1454
|
}, off: () => {
|
|
1378
|
-
|
|
1455
|
+
t(`/device/${e}/off`, null);
|
|
1379
1456
|
} } : void 0;
|
|
1380
1457
|
}
|
|
1381
|
-
function
|
|
1382
|
-
const { sendMessage:
|
|
1383
|
-
return
|
|
1384
|
-
|
|
1458
|
+
function Be(e) {
|
|
1459
|
+
const { sendMessage: t } = b(), n = j1(e);
|
|
1460
|
+
return n ? { techPasswordState: n, validatePassword: (i) => {
|
|
1461
|
+
t(`/room/${e}/validateTechPassword`, { password: i });
|
|
1385
1462
|
}, setPassword: (i, d) => {
|
|
1386
|
-
|
|
1463
|
+
t(`/room/${e}/setTechPassword`, { oldPassword: i, newPassword: d });
|
|
1387
1464
|
} } : void 0;
|
|
1388
1465
|
}
|
|
1389
|
-
function
|
|
1390
|
-
const { sendMessage:
|
|
1391
|
-
return
|
|
1466
|
+
function Oe(e) {
|
|
1467
|
+
const { sendMessage: t } = b(), n = T(e);
|
|
1468
|
+
return n ? { state: n, setTemperatureUnitsToCelcius: () => t(`${e}/setTemperatureUnitsToCelcius`, null), setTemperatureUnitsToFahrenheit: () => t(`${e}/setTemperatureUnitsToFahrenheit`, null) } : void 0;
|
|
1392
1469
|
}
|
|
1393
|
-
function
|
|
1394
|
-
const { sendMessage:
|
|
1395
|
-
|
|
1470
|
+
function Ve(e) {
|
|
1471
|
+
const { sendMessage: t } = b(), n = T(e), c = (r) => {
|
|
1472
|
+
t(`/device/${e}/saveTheme`, { value: r });
|
|
1396
1473
|
};
|
|
1397
1474
|
return {
|
|
1398
|
-
currentTheme:
|
|
1399
|
-
saveTheme:
|
|
1475
|
+
currentTheme: n == null ? void 0 : n.theme,
|
|
1476
|
+
saveTheme: c
|
|
1400
1477
|
};
|
|
1401
1478
|
}
|
|
1402
|
-
function
|
|
1403
|
-
const
|
|
1404
|
-
return { play:
|
|
1479
|
+
function ke(e) {
|
|
1480
|
+
const t = `/device/${e}`, n = g(t, "play"), c = g(t, "pause"), r = g(t, "stop"), i = g(t, "prevTrack"), d = g(t, "nextTrack"), a = g(t, "rewind"), f = g(t, "ffwd"), w = g(t, "record");
|
|
1481
|
+
return { play: n, pause: c, stop: r, prevTrack: i, nextTrack: d, rewind: a, fastForward: f, record: w };
|
|
1405
1482
|
}
|
|
1406
|
-
function
|
|
1407
|
-
const
|
|
1408
|
-
return
|
|
1409
|
-
touchpanelState:
|
|
1483
|
+
function Ue(e) {
|
|
1484
|
+
const t = T(e), { sendMessage: n } = b();
|
|
1485
|
+
return t ? {
|
|
1486
|
+
touchpanelState: t,
|
|
1410
1487
|
appControl: { hideApp: () => {
|
|
1411
|
-
|
|
1488
|
+
n(`/device/${e}/hideApp`, null);
|
|
1412
1489
|
}, openApp: () => {
|
|
1413
|
-
|
|
1490
|
+
n(`/device/${e}/openApp`, null);
|
|
1414
1491
|
}, closeApp: () => {
|
|
1415
|
-
|
|
1492
|
+
n(`/device/${e}/closeApp`, null);
|
|
1416
1493
|
} },
|
|
1417
1494
|
zoomControl: { endCall: () => {
|
|
1418
|
-
|
|
1495
|
+
n(`/device/${e}/endCall`, null);
|
|
1419
1496
|
} }
|
|
1420
1497
|
} : void 0;
|
|
1421
1498
|
}
|
|
1422
|
-
function
|
|
1423
|
-
const
|
|
1424
|
-
if (!
|
|
1425
|
-
const
|
|
1499
|
+
function Fe(e) {
|
|
1500
|
+
const t = T(e), n = S3(e), c = V1(e);
|
|
1501
|
+
if (!t) return;
|
|
1502
|
+
const r = (t.powerState || t.isWarming) && !t.isCooling, i = (!t.powerState || t.isCooling) && !t.isWarming;
|
|
1426
1503
|
return {
|
|
1427
|
-
displayState:
|
|
1428
|
-
powerControl:
|
|
1429
|
-
inputControl:
|
|
1430
|
-
powerFb: { powerOnFb:
|
|
1504
|
+
displayState: t,
|
|
1505
|
+
powerControl: n,
|
|
1506
|
+
inputControl: c,
|
|
1507
|
+
powerFb: { powerOnFb: r, powerOffFb: i }
|
|
1431
1508
|
};
|
|
1432
1509
|
}
|
|
1433
|
-
const
|
|
1434
|
-
const { sendMessage:
|
|
1435
|
-
|
|
1436
|
-
var
|
|
1437
|
-
if (!
|
|
1510
|
+
const We = ({ config: e }) => {
|
|
1511
|
+
const { sendMessage: t } = b();
|
|
1512
|
+
o1(() => {
|
|
1513
|
+
var c, r, i, d;
|
|
1514
|
+
if (!e)
|
|
1438
1515
|
return;
|
|
1439
|
-
const
|
|
1440
|
-
if (
|
|
1441
|
-
|
|
1442
|
-
}),
|
|
1443
|
-
|
|
1444
|
-
}),
|
|
1445
|
-
|
|
1446
|
-
}), (
|
|
1447
|
-
|
|
1448
|
-
}), (i =
|
|
1449
|
-
|
|
1450
|
-
}), (d =
|
|
1451
|
-
|
|
1452
|
-
}),
|
|
1453
|
-
|
|
1454
|
-
}),
|
|
1455
|
-
for (const
|
|
1456
|
-
|
|
1457
|
-
console.log("deviceKeys",
|
|
1458
|
-
|
|
1516
|
+
const n = [];
|
|
1517
|
+
if (e.destinations && Object.values(e.destinations).forEach((a) => {
|
|
1518
|
+
n.push(a);
|
|
1519
|
+
}), e.destinationList && Object.values(e.destinationList).forEach((a) => {
|
|
1520
|
+
n.push(a.sinkKey);
|
|
1521
|
+
}), e.audioControlPointList && Object.values((c = e.audioControlPointList) == null ? void 0 : c.levelControls).forEach((a) => {
|
|
1522
|
+
a.itemKey ? n.push(a.parentDeviceKey + "--" + a.itemKey) : n.push(a.parentDeviceKey);
|
|
1523
|
+
}), (r = e.touchpanelKeys) == null || r.forEach((a) => {
|
|
1524
|
+
n.push(a);
|
|
1525
|
+
}), (i = e.environmentalDevices) == null || i.forEach((a) => {
|
|
1526
|
+
n.push(a.deviceKey);
|
|
1527
|
+
}), (d = e.accessoryDeviceKeys) == null || d.forEach((a) => {
|
|
1528
|
+
n.push(a);
|
|
1529
|
+
}), e.audioCodecKey && n.push(e.audioCodecKey), e.videoCodecKey && n.push(e.videoCodecKey), e.matrixRoutingKey && n.push(e.matrixRoutingKey), e.roomCombinerKey && n.push(e.roomCombinerKey), e.endpointKeys && e.endpointKeys.forEach((a) => {
|
|
1530
|
+
n.push(a);
|
|
1531
|
+
}), e.sourceList)
|
|
1532
|
+
for (const a of Object.values(e.sourceList))
|
|
1533
|
+
a.sourceKey && a.sourceKey !== "$off" && n.push(a.sourceKey);
|
|
1534
|
+
console.log("deviceKeys", n), n.forEach((a) => {
|
|
1535
|
+
t(`/device/${a}/fullStatus`, { deviceKey: a });
|
|
1459
1536
|
});
|
|
1460
|
-
}, [
|
|
1537
|
+
}, [e, t]);
|
|
1461
1538
|
};
|
|
1462
|
-
function
|
|
1463
|
-
const [
|
|
1464
|
-
return
|
|
1465
|
-
const { current: d } =
|
|
1539
|
+
function He(e, t) {
|
|
1540
|
+
const [n, c] = H(!1), [r, i] = H(!1);
|
|
1541
|
+
return w3(() => {
|
|
1542
|
+
const { current: d } = e, a = () => {
|
|
1466
1543
|
const f = d && d.scrollHeight > d.clientHeight, w = d && d.scrollWidth > d.clientWidth;
|
|
1467
|
-
i(f ?? !1),
|
|
1544
|
+
i(f ?? !1), c(w ?? !1), t && t(f ?? !1, w ?? !1);
|
|
1468
1545
|
};
|
|
1469
|
-
d &&
|
|
1470
|
-
}, [
|
|
1546
|
+
d && a();
|
|
1547
|
+
}, [e, t]), { overflowHorizontal: n, overflowVertical: r };
|
|
1471
1548
|
}
|
|
1472
|
-
function
|
|
1473
|
-
const
|
|
1474
|
-
return
|
|
1549
|
+
function Ke(e, t) {
|
|
1550
|
+
const n = X2(e, t), c = `/room/${e}/volumes/${t}`;
|
|
1551
|
+
return C3(c, n);
|
|
1475
1552
|
}
|
|
1476
|
-
function
|
|
1477
|
-
var
|
|
1478
|
-
const [
|
|
1479
|
-
const { current: h } =
|
|
1553
|
+
function Ge(e) {
|
|
1554
|
+
var a, f;
|
|
1555
|
+
const [t, n] = H(((a = e == null ? void 0 : e.current) == null ? void 0 : a.scrollLeft) ?? 0), [c, r] = H(((f = e == null ? void 0 : e.current) == null ? void 0 : f.scrollTop) ?? 0), i = (w) => {
|
|
1556
|
+
const { current: h } = e;
|
|
1480
1557
|
h && (console.log(h.scrollLeft), h.scrollLeft += w, console.log(h.scrollLeft));
|
|
1481
1558
|
}, d = (w) => {
|
|
1482
|
-
const { current: h } =
|
|
1559
|
+
const { current: h } = e;
|
|
1483
1560
|
h && (console.log(h.scrollTop), h.scrollTop += w, console.log(h.scrollTop));
|
|
1484
1561
|
};
|
|
1485
|
-
return
|
|
1486
|
-
const { current: w } =
|
|
1487
|
-
|
|
1562
|
+
return w3(() => {
|
|
1563
|
+
const { current: w } = e, h = () => {
|
|
1564
|
+
n((w == null ? void 0 : w.scrollLeft) ?? 0), r((w == null ? void 0 : w.scrollTop) ?? 0);
|
|
1488
1565
|
};
|
|
1489
1566
|
w && h();
|
|
1490
|
-
}, [
|
|
1567
|
+
}, [e]), { horizontalScrollPosition: t, verticalScrollPosition: c, scrollHorizontal: i, scrollVertical: d };
|
|
1491
1568
|
}
|
|
1492
|
-
function
|
|
1493
|
-
const { sendMessage:
|
|
1569
|
+
function qe() {
|
|
1570
|
+
const { sendMessage: e } = b();
|
|
1494
1571
|
return {
|
|
1495
1572
|
reboot: () => {
|
|
1496
|
-
|
|
1573
|
+
e("/system/reboot", null);
|
|
1497
1574
|
},
|
|
1498
1575
|
programReset: () => {
|
|
1499
|
-
|
|
1576
|
+
e("/system/programReset", null);
|
|
1500
1577
|
}
|
|
1501
1578
|
};
|
|
1502
1579
|
}
|
|
1503
|
-
function
|
|
1504
|
-
const [
|
|
1505
|
-
function
|
|
1506
|
-
|
|
1580
|
+
function Ye() {
|
|
1581
|
+
const [e, t] = H(), [n, c] = H();
|
|
1582
|
+
function r() {
|
|
1583
|
+
t((/* @__PURE__ */ new Date()).toLocaleDateString("en-US", { dateStyle: "long" }));
|
|
1507
1584
|
const i = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
|
|
1508
|
-
|
|
1585
|
+
c(i);
|
|
1509
1586
|
}
|
|
1510
|
-
return
|
|
1511
|
-
|
|
1587
|
+
return o1(() => {
|
|
1588
|
+
r();
|
|
1512
1589
|
const i = setInterval(() => {
|
|
1513
|
-
|
|
1590
|
+
r();
|
|
1514
1591
|
}, 1e3);
|
|
1515
1592
|
return () => clearInterval(i);
|
|
1516
|
-
}, []), { date:
|
|
1593
|
+
}, []), { date: e, time: n };
|
|
1517
1594
|
}
|
|
1518
|
-
const
|
|
1519
|
-
const [
|
|
1520
|
-
let
|
|
1521
|
-
return
|
|
1595
|
+
const ze = () => {
|
|
1596
|
+
const [e, t] = H(!1), n = a2(), c = u2();
|
|
1597
|
+
let r;
|
|
1598
|
+
return d2(c) ? r = c.statusText : c instanceof Error ? r = c.message : typeof c == "string" ? r = c : (console.error(c), r = "Unknown error"), /* @__PURE__ */ s.jsxs("div", { className: "d-flex flex-column align-items-center gap-5", children: [
|
|
1522
1599
|
/* @__PURE__ */ s.jsx("div", { className: "m-2 p-2 bg-danger rounded d-flex align-items-center", children: /* @__PURE__ */ s.jsx("span", { className: "fs-5 text-white", children: "We are sorry. Something went wrong." }) }),
|
|
1523
|
-
/* @__PURE__ */ s.jsx("button", { className: "btn btn-primary p-2", onClick: () =>
|
|
1524
|
-
/* @__PURE__ */ s.jsx("button", { className: "btn btn-primary p-2", onClick: () =>
|
|
1525
|
-
|
|
1600
|
+
/* @__PURE__ */ s.jsx("button", { className: "btn btn-primary p-2", onClick: () => n(-1), children: "Go Back" }),
|
|
1601
|
+
/* @__PURE__ */ s.jsx("button", { className: "btn btn-primary p-2", onClick: () => t(!e), children: e ? "Hide error message" : "Show error message" }),
|
|
1602
|
+
e && /* @__PURE__ */ s.jsx("p", { children: r })
|
|
1526
1603
|
] });
|
|
1527
|
-
},
|
|
1528
|
-
iconbtn:
|
|
1529
|
-
iconbtnvert:
|
|
1530
|
-
iconsm:
|
|
1531
|
-
},
|
|
1532
|
-
multiIcon:
|
|
1533
|
-
otherContent:
|
|
1534
|
-
vert:
|
|
1535
|
-
className:
|
|
1536
|
-
iconClassName:
|
|
1604
|
+
}, _8 = "_iconbtn_16qss_1", T8 = "_iconbtnvert_16qss_7", L8 = "_iconsm_16qss_18", D1 = {
|
|
1605
|
+
iconbtn: _8,
|
|
1606
|
+
iconbtnvert: T8,
|
|
1607
|
+
iconsm: L8
|
|
1608
|
+
}, P8 = ({
|
|
1609
|
+
multiIcon: e,
|
|
1610
|
+
otherContent: t = null,
|
|
1611
|
+
vert: n = !1,
|
|
1612
|
+
className: c,
|
|
1613
|
+
iconClassName: r = "",
|
|
1537
1614
|
otherContentClassName: i = "",
|
|
1538
1615
|
disabled: d,
|
|
1539
|
-
feedback:
|
|
1616
|
+
feedback: a,
|
|
1540
1617
|
feedbackClassName: f,
|
|
1541
1618
|
onPointerDown: w,
|
|
1542
1619
|
onPointerUp: h,
|
|
1543
|
-
onPointerLeave:
|
|
1544
|
-
|
|
1620
|
+
onPointerLeave: R,
|
|
1621
|
+
...A
|
|
1545
1622
|
}) => {
|
|
1546
|
-
const [
|
|
1623
|
+
const [F, k] = H(!1), Q = !d && a ? f : "", c1 = !d && (F || a);
|
|
1547
1624
|
return /* @__PURE__ */ s.jsxs(
|
|
1548
1625
|
"button",
|
|
1549
1626
|
{
|
|
1550
1627
|
type: "button",
|
|
1551
|
-
className: `${
|
|
1552
|
-
|
|
1628
|
+
className: `${D1.iconbtn} ${n ? D1.iconbtnvert : ""} ${c} ${Q}`,
|
|
1629
|
+
...A,
|
|
1553
1630
|
disabled: d,
|
|
1554
|
-
onPointerDown: (
|
|
1555
|
-
|
|
1631
|
+
onPointerDown: (D) => {
|
|
1632
|
+
k(!0), w == null || w(D);
|
|
1556
1633
|
},
|
|
1557
|
-
onPointerUp: (
|
|
1558
|
-
|
|
1634
|
+
onPointerUp: (D) => {
|
|
1635
|
+
k(!1), h == null || h(D);
|
|
1559
1636
|
},
|
|
1560
|
-
onPointerLeave: (
|
|
1561
|
-
|
|
1637
|
+
onPointerLeave: (D) => {
|
|
1638
|
+
k(!1), R == null || R(D);
|
|
1562
1639
|
},
|
|
1563
1640
|
children: [
|
|
1564
|
-
|
|
1565
|
-
|
|
1641
|
+
e && /* @__PURE__ */ s.jsx(
|
|
1642
|
+
e,
|
|
1566
1643
|
{
|
|
1567
|
-
className: `${
|
|
1568
|
-
active:
|
|
1644
|
+
className: `${r || D1.iconsm}`,
|
|
1645
|
+
active: c1,
|
|
1569
1646
|
disabled: d
|
|
1570
1647
|
}
|
|
1571
1648
|
),
|
|
1572
|
-
i ? /* @__PURE__ */ s.jsx("div", { className: i, children:
|
|
1649
|
+
i ? /* @__PURE__ */ s.jsx("div", { className: i, children: t }) : /* @__PURE__ */ s.jsx("div", { children: t })
|
|
1573
1650
|
]
|
|
1574
1651
|
}
|
|
1575
1652
|
);
|
|
1576
|
-
},
|
|
1577
|
-
ActiveImage:
|
|
1578
|
-
DisabledImage:
|
|
1579
|
-
EnabledImage:
|
|
1580
|
-
active:
|
|
1581
|
-
disabled:
|
|
1582
|
-
}) =>
|
|
1583
|
-
active:
|
|
1584
|
-
className:
|
|
1585
|
-
disabled:
|
|
1653
|
+
}, j = ({
|
|
1654
|
+
ActiveImage: e,
|
|
1655
|
+
DisabledImage: t,
|
|
1656
|
+
EnabledImage: n,
|
|
1657
|
+
active: c,
|
|
1658
|
+
disabled: r
|
|
1659
|
+
}) => r ? t : c ? e : n, D8 = ({
|
|
1660
|
+
active: e,
|
|
1661
|
+
className: t = "",
|
|
1662
|
+
disabled: n
|
|
1586
1663
|
}) => /* @__PURE__ */ s.jsx(
|
|
1587
|
-
|
|
1664
|
+
j,
|
|
1588
1665
|
{
|
|
1589
1666
|
ActiveImage: /* @__PURE__ */ s.jsx(
|
|
1590
1667
|
"svg",
|
|
1591
1668
|
{
|
|
1592
|
-
className:
|
|
1669
|
+
className: t,
|
|
1593
1670
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1594
1671
|
viewBox: "0 0 164.61 164.61",
|
|
1595
1672
|
fill: "currentcolor",
|
|
@@ -1605,7 +1682,7 @@ const le = () => {
|
|
|
1605
1682
|
DisabledImage: /* @__PURE__ */ s.jsx(
|
|
1606
1683
|
"svg",
|
|
1607
1684
|
{
|
|
1608
|
-
className:
|
|
1685
|
+
className: t,
|
|
1609
1686
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1610
1687
|
viewBox: "0 0 164.61 164.61",
|
|
1611
1688
|
fill: "currentColor",
|
|
@@ -1615,7 +1692,7 @@ const le = () => {
|
|
|
1615
1692
|
EnabledImage: /* @__PURE__ */ s.jsx(
|
|
1616
1693
|
"svg",
|
|
1617
1694
|
{
|
|
1618
|
-
className:
|
|
1695
|
+
className: t,
|
|
1619
1696
|
fill: "currentcolor",
|
|
1620
1697
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1621
1698
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1628,22 +1705,22 @@ const le = () => {
|
|
|
1628
1705
|
) })
|
|
1629
1706
|
}
|
|
1630
1707
|
),
|
|
1631
|
-
active:
|
|
1632
|
-
disabled:
|
|
1708
|
+
active: e,
|
|
1709
|
+
disabled: n
|
|
1633
1710
|
}
|
|
1634
|
-
),
|
|
1635
|
-
active:
|
|
1636
|
-
className:
|
|
1637
|
-
disabled:
|
|
1711
|
+
), $8 = ({
|
|
1712
|
+
active: e,
|
|
1713
|
+
className: t = "",
|
|
1714
|
+
disabled: n
|
|
1638
1715
|
}) => /* @__PURE__ */ s.jsx(
|
|
1639
|
-
|
|
1716
|
+
j,
|
|
1640
1717
|
{
|
|
1641
1718
|
ActiveImage: (
|
|
1642
1719
|
/* icon-ban-active.svg */
|
|
1643
1720
|
/* @__PURE__ */ s.jsx(
|
|
1644
1721
|
"svg",
|
|
1645
1722
|
{
|
|
1646
|
-
className:
|
|
1723
|
+
className: t,
|
|
1647
1724
|
fill: "currentcolor",
|
|
1648
1725
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1649
1726
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1656,7 +1733,7 @@ const le = () => {
|
|
|
1656
1733
|
/* @__PURE__ */ s.jsx(
|
|
1657
1734
|
"svg",
|
|
1658
1735
|
{
|
|
1659
|
-
className:
|
|
1736
|
+
className: t,
|
|
1660
1737
|
fill: "currentcolor",
|
|
1661
1738
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1662
1739
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1669,7 +1746,7 @@ const le = () => {
|
|
|
1669
1746
|
/* @__PURE__ */ s.jsx(
|
|
1670
1747
|
"svg",
|
|
1671
1748
|
{
|
|
1672
|
-
className:
|
|
1749
|
+
className: t,
|
|
1673
1750
|
fill: "currentcolor",
|
|
1674
1751
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1675
1752
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1677,20 +1754,20 @@ const le = () => {
|
|
|
1677
1754
|
}
|
|
1678
1755
|
)
|
|
1679
1756
|
),
|
|
1680
|
-
active:
|
|
1681
|
-
disabled:
|
|
1757
|
+
active: e,
|
|
1758
|
+
disabled: n
|
|
1682
1759
|
}
|
|
1683
|
-
),
|
|
1684
|
-
active:
|
|
1685
|
-
className:
|
|
1686
|
-
disabled:
|
|
1760
|
+
), A8 = ({
|
|
1761
|
+
active: e,
|
|
1762
|
+
className: t = "",
|
|
1763
|
+
disabled: n
|
|
1687
1764
|
}) => /* @__PURE__ */ s.jsx(
|
|
1688
|
-
|
|
1765
|
+
j,
|
|
1689
1766
|
{
|
|
1690
1767
|
ActiveImage: /* @__PURE__ */ s.jsx(
|
|
1691
1768
|
"svg",
|
|
1692
1769
|
{
|
|
1693
|
-
className:
|
|
1770
|
+
className: t,
|
|
1694
1771
|
fill: "currentcolor",
|
|
1695
1772
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1696
1773
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1700,7 +1777,7 @@ const le = () => {
|
|
|
1700
1777
|
DisabledImage: /* @__PURE__ */ s.jsx(
|
|
1701
1778
|
"svg",
|
|
1702
1779
|
{
|
|
1703
|
-
className:
|
|
1780
|
+
className: t,
|
|
1704
1781
|
fill: "currentcolor",
|
|
1705
1782
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1706
1783
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1710,29 +1787,29 @@ const le = () => {
|
|
|
1710
1787
|
EnabledImage: /* @__PURE__ */ s.jsx(
|
|
1711
1788
|
"svg",
|
|
1712
1789
|
{
|
|
1713
|
-
className:
|
|
1790
|
+
className: t,
|
|
1714
1791
|
fill: "currentcolor",
|
|
1715
1792
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1716
1793
|
viewBox: "0 0 164.61 164.61",
|
|
1717
1794
|
children: /* @__PURE__ */ s.jsx("g", { children: /* @__PURE__ */ s.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" }) })
|
|
1718
1795
|
}
|
|
1719
1796
|
),
|
|
1720
|
-
active:
|
|
1721
|
-
disabled:
|
|
1797
|
+
active: e,
|
|
1798
|
+
disabled: n
|
|
1722
1799
|
}
|
|
1723
|
-
),
|
|
1724
|
-
active:
|
|
1725
|
-
className:
|
|
1726
|
-
disabled:
|
|
1800
|
+
), B8 = ({
|
|
1801
|
+
active: e,
|
|
1802
|
+
className: t = "",
|
|
1803
|
+
disabled: n
|
|
1727
1804
|
}) => /* @__PURE__ */ s.jsx(
|
|
1728
|
-
|
|
1805
|
+
j,
|
|
1729
1806
|
{
|
|
1730
1807
|
ActiveImage: (
|
|
1731
1808
|
/* icon-check-active.svg */
|
|
1732
1809
|
/* @__PURE__ */ s.jsx(
|
|
1733
1810
|
"svg",
|
|
1734
1811
|
{
|
|
1735
|
-
className:
|
|
1812
|
+
className: t,
|
|
1736
1813
|
fill: "currentcolor",
|
|
1737
1814
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1738
1815
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1745,7 +1822,7 @@ const le = () => {
|
|
|
1745
1822
|
/* @__PURE__ */ s.jsx(
|
|
1746
1823
|
"svg",
|
|
1747
1824
|
{
|
|
1748
|
-
className:
|
|
1825
|
+
className: t,
|
|
1749
1826
|
fill: "currentcolor",
|
|
1750
1827
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1751
1828
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1758,7 +1835,7 @@ const le = () => {
|
|
|
1758
1835
|
/* @__PURE__ */ s.jsx(
|
|
1759
1836
|
"svg",
|
|
1760
1837
|
{
|
|
1761
|
-
className:
|
|
1838
|
+
className: t,
|
|
1762
1839
|
fill: "currentcolor",
|
|
1763
1840
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1764
1841
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1766,24 +1843,24 @@ const le = () => {
|
|
|
1766
1843
|
}
|
|
1767
1844
|
)
|
|
1768
1845
|
),
|
|
1769
|
-
active:
|
|
1770
|
-
disabled:
|
|
1846
|
+
active: e,
|
|
1847
|
+
disabled: n
|
|
1771
1848
|
}
|
|
1772
|
-
),
|
|
1773
|
-
active:
|
|
1849
|
+
), O8 = ({
|
|
1850
|
+
active: e,
|
|
1774
1851
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
1775
1852
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1776
|
-
className:
|
|
1777
|
-
disabled:
|
|
1853
|
+
className: t = "",
|
|
1854
|
+
disabled: n
|
|
1778
1855
|
}) => /* @__PURE__ */ s.jsx(
|
|
1779
|
-
|
|
1856
|
+
j,
|
|
1780
1857
|
{
|
|
1781
1858
|
ActiveImage: (
|
|
1782
1859
|
/* icon-controller-active.svg */
|
|
1783
1860
|
/* @__PURE__ */ s.jsx(
|
|
1784
1861
|
"svg",
|
|
1785
1862
|
{
|
|
1786
|
-
className:
|
|
1863
|
+
className: t,
|
|
1787
1864
|
fill: "currentcolor",
|
|
1788
1865
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1789
1866
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1802,7 +1879,7 @@ const le = () => {
|
|
|
1802
1879
|
/* @__PURE__ */ s.jsx(
|
|
1803
1880
|
"svg",
|
|
1804
1881
|
{
|
|
1805
|
-
className:
|
|
1882
|
+
className: t,
|
|
1806
1883
|
fill: "currentcolor",
|
|
1807
1884
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1808
1885
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1821,7 +1898,7 @@ const le = () => {
|
|
|
1821
1898
|
/* @__PURE__ */ s.jsx(
|
|
1822
1899
|
"svg",
|
|
1823
1900
|
{
|
|
1824
|
-
className:
|
|
1901
|
+
className: t,
|
|
1825
1902
|
fill: "currentcolor",
|
|
1826
1903
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1827
1904
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1835,22 +1912,22 @@ const le = () => {
|
|
|
1835
1912
|
}
|
|
1836
1913
|
)
|
|
1837
1914
|
),
|
|
1838
|
-
active:
|
|
1839
|
-
disabled:
|
|
1915
|
+
active: e,
|
|
1916
|
+
disabled: n
|
|
1840
1917
|
}
|
|
1841
|
-
),
|
|
1842
|
-
active:
|
|
1843
|
-
className:
|
|
1844
|
-
disabled:
|
|
1918
|
+
), V8 = ({
|
|
1919
|
+
active: e,
|
|
1920
|
+
className: t = "",
|
|
1921
|
+
disabled: n
|
|
1845
1922
|
}) => /* @__PURE__ */ s.jsx(
|
|
1846
|
-
|
|
1923
|
+
j,
|
|
1847
1924
|
{
|
|
1848
1925
|
ActiveImage: (
|
|
1849
1926
|
/* icon-down-active.svg */
|
|
1850
1927
|
/* @__PURE__ */ s.jsx(
|
|
1851
1928
|
"svg",
|
|
1852
1929
|
{
|
|
1853
|
-
className:
|
|
1930
|
+
className: t,
|
|
1854
1931
|
fill: "currentcolor",
|
|
1855
1932
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1856
1933
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1863,7 +1940,7 @@ const le = () => {
|
|
|
1863
1940
|
/* @__PURE__ */ s.jsx(
|
|
1864
1941
|
"svg",
|
|
1865
1942
|
{
|
|
1866
|
-
className:
|
|
1943
|
+
className: t,
|
|
1867
1944
|
fill: "currentcolor",
|
|
1868
1945
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1869
1946
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1876,7 +1953,7 @@ const le = () => {
|
|
|
1876
1953
|
/* @__PURE__ */ s.jsx(
|
|
1877
1954
|
"svg",
|
|
1878
1955
|
{
|
|
1879
|
-
className:
|
|
1956
|
+
className: t,
|
|
1880
1957
|
fill: "currentcolor",
|
|
1881
1958
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1882
1959
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1884,22 +1961,22 @@ const le = () => {
|
|
|
1884
1961
|
}
|
|
1885
1962
|
)
|
|
1886
1963
|
),
|
|
1887
|
-
active:
|
|
1888
|
-
disabled:
|
|
1964
|
+
active: e,
|
|
1965
|
+
disabled: n
|
|
1889
1966
|
}
|
|
1890
|
-
),
|
|
1891
|
-
active:
|
|
1892
|
-
className:
|
|
1893
|
-
disabled:
|
|
1967
|
+
), k8 = ({
|
|
1968
|
+
active: e,
|
|
1969
|
+
className: t = "",
|
|
1970
|
+
disabled: n
|
|
1894
1971
|
}) => /* @__PURE__ */ s.jsx(
|
|
1895
|
-
|
|
1972
|
+
j,
|
|
1896
1973
|
{
|
|
1897
1974
|
ActiveImage: (
|
|
1898
1975
|
/* icon-elipses-active.svg */
|
|
1899
1976
|
/* @__PURE__ */ s.jsx(
|
|
1900
1977
|
"svg",
|
|
1901
1978
|
{
|
|
1902
|
-
className:
|
|
1979
|
+
className: t,
|
|
1903
1980
|
fill: "currentcolor",
|
|
1904
1981
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1905
1982
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1912,7 +1989,7 @@ const le = () => {
|
|
|
1912
1989
|
/* @__PURE__ */ s.jsx(
|
|
1913
1990
|
"svg",
|
|
1914
1991
|
{
|
|
1915
|
-
className:
|
|
1992
|
+
className: t,
|
|
1916
1993
|
fill: "currentcolor",
|
|
1917
1994
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1918
1995
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1925,7 +2002,7 @@ const le = () => {
|
|
|
1925
2002
|
/* @__PURE__ */ s.jsx(
|
|
1926
2003
|
"svg",
|
|
1927
2004
|
{
|
|
1928
|
-
className:
|
|
2005
|
+
className: t,
|
|
1929
2006
|
fill: "currentcolor",
|
|
1930
2007
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1931
2008
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1933,22 +2010,22 @@ const le = () => {
|
|
|
1933
2010
|
}
|
|
1934
2011
|
)
|
|
1935
2012
|
),
|
|
1936
|
-
active:
|
|
1937
|
-
disabled:
|
|
2013
|
+
active: e,
|
|
2014
|
+
disabled: n
|
|
1938
2015
|
}
|
|
1939
|
-
),
|
|
1940
|
-
active:
|
|
1941
|
-
className:
|
|
1942
|
-
disabled:
|
|
2016
|
+
), U8 = ({
|
|
2017
|
+
active: e,
|
|
2018
|
+
className: t = "",
|
|
2019
|
+
disabled: n
|
|
1943
2020
|
}) => /* @__PURE__ */ s.jsx(
|
|
1944
|
-
|
|
2021
|
+
j,
|
|
1945
2022
|
{
|
|
1946
2023
|
ActiveImage: (
|
|
1947
2024
|
/* icon-flag-active.svg */
|
|
1948
2025
|
/* @__PURE__ */ s.jsx(
|
|
1949
2026
|
"svg",
|
|
1950
2027
|
{
|
|
1951
|
-
className:
|
|
2028
|
+
className: t,
|
|
1952
2029
|
fill: "currentcolor",
|
|
1953
2030
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1954
2031
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1961,7 +2038,7 @@ const le = () => {
|
|
|
1961
2038
|
/* @__PURE__ */ s.jsx(
|
|
1962
2039
|
"svg",
|
|
1963
2040
|
{
|
|
1964
|
-
className:
|
|
2041
|
+
className: t,
|
|
1965
2042
|
fill: "currentcolor",
|
|
1966
2043
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1967
2044
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1974,7 +2051,7 @@ const le = () => {
|
|
|
1974
2051
|
/* @__PURE__ */ s.jsx(
|
|
1975
2052
|
"svg",
|
|
1976
2053
|
{
|
|
1977
|
-
className:
|
|
2054
|
+
className: t,
|
|
1978
2055
|
fill: "currentcolor",
|
|
1979
2056
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1980
2057
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -1982,22 +2059,22 @@ const le = () => {
|
|
|
1982
2059
|
}
|
|
1983
2060
|
)
|
|
1984
2061
|
),
|
|
1985
|
-
active:
|
|
1986
|
-
disabled:
|
|
2062
|
+
active: e,
|
|
2063
|
+
disabled: n
|
|
1987
2064
|
}
|
|
1988
|
-
),
|
|
1989
|
-
active:
|
|
1990
|
-
className:
|
|
1991
|
-
disabled:
|
|
2065
|
+
), F8 = ({
|
|
2066
|
+
active: e,
|
|
2067
|
+
className: t = "",
|
|
2068
|
+
disabled: n
|
|
1992
2069
|
}) => /* @__PURE__ */ s.jsx(
|
|
1993
|
-
|
|
2070
|
+
j,
|
|
1994
2071
|
{
|
|
1995
2072
|
ActiveImage: (
|
|
1996
2073
|
/* /Users/hvolmer/Downloads/SVG/icon-gear-active.svg */
|
|
1997
2074
|
/* @__PURE__ */ s.jsx(
|
|
1998
2075
|
"svg",
|
|
1999
2076
|
{
|
|
2000
|
-
className:
|
|
2077
|
+
className: t,
|
|
2001
2078
|
fill: "currentcolor",
|
|
2002
2079
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2003
2080
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2010,7 +2087,7 @@ const le = () => {
|
|
|
2010
2087
|
/* @__PURE__ */ s.jsx(
|
|
2011
2088
|
"svg",
|
|
2012
2089
|
{
|
|
2013
|
-
className:
|
|
2090
|
+
className: t,
|
|
2014
2091
|
fill: "currentcolor",
|
|
2015
2092
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2016
2093
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2023,7 +2100,7 @@ const le = () => {
|
|
|
2023
2100
|
/* @__PURE__ */ s.jsx(
|
|
2024
2101
|
"svg",
|
|
2025
2102
|
{
|
|
2026
|
-
className:
|
|
2103
|
+
className: t,
|
|
2027
2104
|
fill: "currentcolor",
|
|
2028
2105
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2029
2106
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2031,22 +2108,22 @@ const le = () => {
|
|
|
2031
2108
|
}
|
|
2032
2109
|
)
|
|
2033
2110
|
),
|
|
2034
|
-
active:
|
|
2035
|
-
disabled:
|
|
2111
|
+
active: e,
|
|
2112
|
+
disabled: n
|
|
2036
2113
|
}
|
|
2037
|
-
),
|
|
2038
|
-
active:
|
|
2039
|
-
className:
|
|
2040
|
-
disabled:
|
|
2114
|
+
), W8 = ({
|
|
2115
|
+
active: e,
|
|
2116
|
+
className: t = "",
|
|
2117
|
+
disabled: n
|
|
2041
2118
|
}) => /* @__PURE__ */ s.jsx(
|
|
2042
|
-
|
|
2119
|
+
j,
|
|
2043
2120
|
{
|
|
2044
2121
|
ActiveImage: (
|
|
2045
2122
|
/* icon-glass-active.svg */
|
|
2046
2123
|
/* @__PURE__ */ s.jsx(
|
|
2047
2124
|
"svg",
|
|
2048
2125
|
{
|
|
2049
|
-
className:
|
|
2126
|
+
className: t,
|
|
2050
2127
|
fill: "currentcolor",
|
|
2051
2128
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2052
2129
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2059,7 +2136,7 @@ const le = () => {
|
|
|
2059
2136
|
/* @__PURE__ */ s.jsx(
|
|
2060
2137
|
"svg",
|
|
2061
2138
|
{
|
|
2062
|
-
className:
|
|
2139
|
+
className: t,
|
|
2063
2140
|
fill: "currentcolor",
|
|
2064
2141
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2065
2142
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2072,7 +2149,7 @@ const le = () => {
|
|
|
2072
2149
|
/* @__PURE__ */ s.jsx(
|
|
2073
2150
|
"svg",
|
|
2074
2151
|
{
|
|
2075
|
-
className:
|
|
2152
|
+
className: t,
|
|
2076
2153
|
fill: "currentcolor",
|
|
2077
2154
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2078
2155
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2080,24 +2157,24 @@ const le = () => {
|
|
|
2080
2157
|
}
|
|
2081
2158
|
)
|
|
2082
2159
|
),
|
|
2083
|
-
active:
|
|
2084
|
-
disabled:
|
|
2160
|
+
active: e,
|
|
2161
|
+
disabled: n
|
|
2085
2162
|
}
|
|
2086
|
-
),
|
|
2087
|
-
active:
|
|
2163
|
+
), H8 = ({
|
|
2164
|
+
active: e,
|
|
2088
2165
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
2089
2166
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
2090
|
-
className:
|
|
2091
|
-
disabled:
|
|
2167
|
+
className: t = "",
|
|
2168
|
+
disabled: n
|
|
2092
2169
|
}) => /* @__PURE__ */ s.jsx(
|
|
2093
|
-
|
|
2170
|
+
j,
|
|
2094
2171
|
{
|
|
2095
2172
|
ActiveImage: (
|
|
2096
2173
|
/* icon-hdmi-active.svg */
|
|
2097
2174
|
/* @__PURE__ */ s.jsx(
|
|
2098
2175
|
"svg",
|
|
2099
2176
|
{
|
|
2100
|
-
className:
|
|
2177
|
+
className: t,
|
|
2101
2178
|
fill: "currentcolor",
|
|
2102
2179
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2103
2180
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2116,7 +2193,7 @@ const le = () => {
|
|
|
2116
2193
|
/* @__PURE__ */ s.jsx(
|
|
2117
2194
|
"svg",
|
|
2118
2195
|
{
|
|
2119
|
-
className:
|
|
2196
|
+
className: t,
|
|
2120
2197
|
fill: "currentcolor",
|
|
2121
2198
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2122
2199
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2135,7 +2212,7 @@ const le = () => {
|
|
|
2135
2212
|
/* @__PURE__ */ s.jsx(
|
|
2136
2213
|
"svg",
|
|
2137
2214
|
{
|
|
2138
|
-
className:
|
|
2215
|
+
className: t,
|
|
2139
2216
|
fill: "currentcolor",
|
|
2140
2217
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2141
2218
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2149,22 +2226,22 @@ const le = () => {
|
|
|
2149
2226
|
}
|
|
2150
2227
|
)
|
|
2151
2228
|
),
|
|
2152
|
-
active:
|
|
2153
|
-
disabled:
|
|
2229
|
+
active: e,
|
|
2230
|
+
disabled: n
|
|
2154
2231
|
}
|
|
2155
|
-
),
|
|
2156
|
-
active:
|
|
2157
|
-
className:
|
|
2158
|
-
disabled:
|
|
2232
|
+
), K8 = ({
|
|
2233
|
+
active: e,
|
|
2234
|
+
className: t = "",
|
|
2235
|
+
disabled: n
|
|
2159
2236
|
}) => /* @__PURE__ */ s.jsx(
|
|
2160
|
-
|
|
2237
|
+
j,
|
|
2161
2238
|
{
|
|
2162
2239
|
ActiveImage: (
|
|
2163
2240
|
/* icon-laptop-active.svg */
|
|
2164
2241
|
/* @__PURE__ */ s.jsx(
|
|
2165
2242
|
"svg",
|
|
2166
2243
|
{
|
|
2167
|
-
className:
|
|
2244
|
+
className: t,
|
|
2168
2245
|
fill: "currentcolor",
|
|
2169
2246
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2170
2247
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2177,7 +2254,7 @@ const le = () => {
|
|
|
2177
2254
|
/* @__PURE__ */ s.jsx(
|
|
2178
2255
|
"svg",
|
|
2179
2256
|
{
|
|
2180
|
-
className:
|
|
2257
|
+
className: t,
|
|
2181
2258
|
fill: "currentcolor",
|
|
2182
2259
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2183
2260
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2190,7 +2267,7 @@ const le = () => {
|
|
|
2190
2267
|
/* @__PURE__ */ s.jsx(
|
|
2191
2268
|
"svg",
|
|
2192
2269
|
{
|
|
2193
|
-
className:
|
|
2270
|
+
className: t,
|
|
2194
2271
|
fill: "currentcolor",
|
|
2195
2272
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2196
2273
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2198,22 +2275,22 @@ const le = () => {
|
|
|
2198
2275
|
}
|
|
2199
2276
|
)
|
|
2200
2277
|
),
|
|
2201
|
-
active:
|
|
2202
|
-
disabled:
|
|
2278
|
+
active: e,
|
|
2279
|
+
disabled: n
|
|
2203
2280
|
}
|
|
2204
|
-
),
|
|
2205
|
-
active:
|
|
2206
|
-
className:
|
|
2207
|
-
disabled:
|
|
2281
|
+
), G8 = ({
|
|
2282
|
+
active: e,
|
|
2283
|
+
className: t = "",
|
|
2284
|
+
disabled: n
|
|
2208
2285
|
}) => /* @__PURE__ */ s.jsx(
|
|
2209
|
-
|
|
2286
|
+
j,
|
|
2210
2287
|
{
|
|
2211
2288
|
ActiveImage: (
|
|
2212
2289
|
/* icon-left-active.svg */
|
|
2213
2290
|
/* @__PURE__ */ s.jsx(
|
|
2214
2291
|
"svg",
|
|
2215
2292
|
{
|
|
2216
|
-
className:
|
|
2293
|
+
className: t,
|
|
2217
2294
|
fill: "currentcolor",
|
|
2218
2295
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2219
2296
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2226,7 +2303,7 @@ const le = () => {
|
|
|
2226
2303
|
/* @__PURE__ */ s.jsx(
|
|
2227
2304
|
"svg",
|
|
2228
2305
|
{
|
|
2229
|
-
className:
|
|
2306
|
+
className: t,
|
|
2230
2307
|
fill: "currentcolor",
|
|
2231
2308
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2232
2309
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2239,7 +2316,7 @@ const le = () => {
|
|
|
2239
2316
|
/* @__PURE__ */ s.jsx(
|
|
2240
2317
|
"svg",
|
|
2241
2318
|
{
|
|
2242
|
-
className:
|
|
2319
|
+
className: t,
|
|
2243
2320
|
fill: "currentcolor",
|
|
2244
2321
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2245
2322
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2247,22 +2324,22 @@ const le = () => {
|
|
|
2247
2324
|
}
|
|
2248
2325
|
)
|
|
2249
2326
|
),
|
|
2250
|
-
active:
|
|
2251
|
-
disabled:
|
|
2327
|
+
active: e,
|
|
2328
|
+
disabled: n
|
|
2252
2329
|
}
|
|
2253
|
-
),
|
|
2254
|
-
active:
|
|
2255
|
-
className:
|
|
2256
|
-
disabled:
|
|
2330
|
+
), q8 = ({
|
|
2331
|
+
active: e,
|
|
2332
|
+
className: t = "",
|
|
2333
|
+
disabled: n
|
|
2257
2334
|
}) => /* @__PURE__ */ s.jsx(
|
|
2258
|
-
|
|
2335
|
+
j,
|
|
2259
2336
|
{
|
|
2260
2337
|
ActiveImage: (
|
|
2261
2338
|
/* icon-light-active.svg */
|
|
2262
2339
|
/* @__PURE__ */ s.jsx(
|
|
2263
2340
|
"svg",
|
|
2264
2341
|
{
|
|
2265
|
-
className:
|
|
2342
|
+
className: t,
|
|
2266
2343
|
fill: "currentcolor",
|
|
2267
2344
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2268
2345
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2275,7 +2352,7 @@ const le = () => {
|
|
|
2275
2352
|
/* @__PURE__ */ s.jsx(
|
|
2276
2353
|
"svg",
|
|
2277
2354
|
{
|
|
2278
|
-
className:
|
|
2355
|
+
className: t,
|
|
2279
2356
|
fill: "currentcolor",
|
|
2280
2357
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2281
2358
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2288,7 +2365,7 @@ const le = () => {
|
|
|
2288
2365
|
/* @__PURE__ */ s.jsx(
|
|
2289
2366
|
"svg",
|
|
2290
2367
|
{
|
|
2291
|
-
className:
|
|
2368
|
+
className: t,
|
|
2292
2369
|
fill: "currentcolor",
|
|
2293
2370
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2294
2371
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2296,22 +2373,22 @@ const le = () => {
|
|
|
2296
2373
|
}
|
|
2297
2374
|
)
|
|
2298
2375
|
),
|
|
2299
|
-
active:
|
|
2300
|
-
disabled:
|
|
2376
|
+
active: e,
|
|
2377
|
+
disabled: n
|
|
2301
2378
|
}
|
|
2302
|
-
),
|
|
2303
|
-
active:
|
|
2304
|
-
className:
|
|
2305
|
-
disabled:
|
|
2379
|
+
), Y8 = ({
|
|
2380
|
+
active: e,
|
|
2381
|
+
className: t = "",
|
|
2382
|
+
disabled: n
|
|
2306
2383
|
}) => /* @__PURE__ */ s.jsx(
|
|
2307
|
-
|
|
2384
|
+
j,
|
|
2308
2385
|
{
|
|
2309
2386
|
ActiveImage: (
|
|
2310
2387
|
/* icon-moon-active.svg */
|
|
2311
2388
|
/* @__PURE__ */ s.jsx(
|
|
2312
2389
|
"svg",
|
|
2313
2390
|
{
|
|
2314
|
-
className:
|
|
2391
|
+
className: t,
|
|
2315
2392
|
fill: "currentcolor",
|
|
2316
2393
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2317
2394
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2324,7 +2401,7 @@ const le = () => {
|
|
|
2324
2401
|
/* @__PURE__ */ s.jsx(
|
|
2325
2402
|
"svg",
|
|
2326
2403
|
{
|
|
2327
|
-
className:
|
|
2404
|
+
className: t,
|
|
2328
2405
|
fill: "currentcolor",
|
|
2329
2406
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2330
2407
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2337,7 +2414,7 @@ const le = () => {
|
|
|
2337
2414
|
/* @__PURE__ */ s.jsx(
|
|
2338
2415
|
"svg",
|
|
2339
2416
|
{
|
|
2340
|
-
className:
|
|
2417
|
+
className: t,
|
|
2341
2418
|
fill: "currentcolor",
|
|
2342
2419
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2343
2420
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2345,44 +2422,44 @@ const le = () => {
|
|
|
2345
2422
|
}
|
|
2346
2423
|
)
|
|
2347
2424
|
),
|
|
2348
|
-
active:
|
|
2349
|
-
disabled:
|
|
2425
|
+
active: e,
|
|
2426
|
+
disabled: n
|
|
2350
2427
|
}
|
|
2351
|
-
),
|
|
2352
|
-
active:
|
|
2353
|
-
className:
|
|
2354
|
-
disabled:
|
|
2428
|
+
), z8 = ({
|
|
2429
|
+
active: e,
|
|
2430
|
+
className: t = "",
|
|
2431
|
+
disabled: n
|
|
2355
2432
|
}) => /* @__PURE__ */ s.jsx(
|
|
2356
|
-
|
|
2433
|
+
j,
|
|
2357
2434
|
{
|
|
2358
2435
|
ActiveImage: (
|
|
2359
2436
|
/* icon-playstation-active.svg */
|
|
2360
|
-
/* @__PURE__ */ s.jsx("svg", { className:
|
|
2437
|
+
/* @__PURE__ */ s.jsx("svg", { className: t, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ s.jsx("g", { children: /* @__PURE__ */ s.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM66.47,96.77l-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.03-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.51ZM86,60.41v60.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,13v-24.22c0-2.84-.52-5.46-3.19-6.2-2.04-.65-3.31,1.24-3.31,4.09ZM131.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.51Z" }) }) })
|
|
2361
2438
|
),
|
|
2362
2439
|
DisabledImage: (
|
|
2363
2440
|
/* icon-playstation-disabled.svg */
|
|
2364
|
-
/* @__PURE__ */ s.jsx("svg", { className:
|
|
2441
|
+
/* @__PURE__ */ s.jsx("svg", { className: t, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ s.jsx("g", { children: /* @__PURE__ */ s.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM82.3,5c19.83,0,37.93,7.51,51.63,19.83L24.82,133.93c-12.32-13.7-19.82-31.8-19.82-51.63C5,39.68,39.68,5,82.3,5ZM82.3,159.61c-19.83,0-37.93-7.51-51.63-19.83L139.78,30.68c12.32,13.7,19.83,31.8,19.83,51.63,0,42.63-34.68,77.3-77.3,77.3ZM95.24,87.85l15.45-15.45c.01.45.03.88.03,1.34,0,11.81-6.62,16.96-15.48,14.11ZM131.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.51ZM86.01,60.12l-16.37,16.37v-32.93c6.95,1.29,17.09,4.34,22.53,6.18,1.09.37,2.1.76,3.07,1.15l-5.59,5.59c-.12-.04-.22-.1-.35-.14-1.97-.63-3.22,1.12-3.3,3.79ZM34,99.94c3.34-2.47,9.01-4.33,9.01-4.33l11.65-4.14-17.26,17.26c-5.9-2.41-6.64-6.39-3.4-8.79ZM69.64,113.45l16.36-16.36v23.97l-16.36-5.19v-2.42Z" }) }) })
|
|
2365
2442
|
),
|
|
2366
2443
|
EnabledImage: (
|
|
2367
2444
|
/* icon-playstation-enabled.svg */
|
|
2368
|
-
/* @__PURE__ */ s.jsx("svg", { className:
|
|
2445
|
+
/* @__PURE__ */ s.jsx("svg", { className: t, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ s.jsx("g", { children: /* @__PURE__ */ s.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" }) }) })
|
|
2369
2446
|
),
|
|
2370
|
-
active:
|
|
2371
|
-
disabled:
|
|
2447
|
+
active: e,
|
|
2448
|
+
disabled: n
|
|
2372
2449
|
}
|
|
2373
|
-
),
|
|
2374
|
-
active:
|
|
2375
|
-
className:
|
|
2376
|
-
disabled:
|
|
2450
|
+
), J8 = ({
|
|
2451
|
+
active: e,
|
|
2452
|
+
className: t = "",
|
|
2453
|
+
disabled: n
|
|
2377
2454
|
}) => /* @__PURE__ */ s.jsx(
|
|
2378
|
-
|
|
2455
|
+
j,
|
|
2379
2456
|
{
|
|
2380
2457
|
ActiveImage: (
|
|
2381
2458
|
/* icon-podium-active.svg */
|
|
2382
2459
|
/* @__PURE__ */ s.jsx(
|
|
2383
2460
|
"svg",
|
|
2384
2461
|
{
|
|
2385
|
-
className:
|
|
2462
|
+
className: t,
|
|
2386
2463
|
fill: "currentcolor",
|
|
2387
2464
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2388
2465
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2395,7 +2472,7 @@ const le = () => {
|
|
|
2395
2472
|
/* @__PURE__ */ s.jsx(
|
|
2396
2473
|
"svg",
|
|
2397
2474
|
{
|
|
2398
|
-
className:
|
|
2475
|
+
className: t,
|
|
2399
2476
|
fill: "currentcolor",
|
|
2400
2477
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2401
2478
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2408,7 +2485,7 @@ const le = () => {
|
|
|
2408
2485
|
/* @__PURE__ */ s.jsx(
|
|
2409
2486
|
"svg",
|
|
2410
2487
|
{
|
|
2411
|
-
className:
|
|
2488
|
+
className: t,
|
|
2412
2489
|
fill: "currentcolor",
|
|
2413
2490
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2414
2491
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2416,22 +2493,22 @@ const le = () => {
|
|
|
2416
2493
|
}
|
|
2417
2494
|
)
|
|
2418
2495
|
),
|
|
2419
|
-
active:
|
|
2420
|
-
disabled:
|
|
2496
|
+
active: e,
|
|
2497
|
+
disabled: n
|
|
2421
2498
|
}
|
|
2422
|
-
),
|
|
2423
|
-
active:
|
|
2424
|
-
className:
|
|
2425
|
-
disabled:
|
|
2499
|
+
), X8 = ({
|
|
2500
|
+
active: e,
|
|
2501
|
+
className: t = "",
|
|
2502
|
+
disabled: n
|
|
2426
2503
|
}) => /* @__PURE__ */ s.jsx(
|
|
2427
|
-
|
|
2504
|
+
j,
|
|
2428
2505
|
{
|
|
2429
2506
|
ActiveImage: (
|
|
2430
2507
|
/* icon-power-active.svg */
|
|
2431
2508
|
/* @__PURE__ */ s.jsx(
|
|
2432
2509
|
"svg",
|
|
2433
2510
|
{
|
|
2434
|
-
className:
|
|
2511
|
+
className: t,
|
|
2435
2512
|
fill: "currentcolor",
|
|
2436
2513
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2437
2514
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2444,7 +2521,7 @@ const le = () => {
|
|
|
2444
2521
|
/* @__PURE__ */ s.jsx(
|
|
2445
2522
|
"svg",
|
|
2446
2523
|
{
|
|
2447
|
-
className:
|
|
2524
|
+
className: t,
|
|
2448
2525
|
fill: "currentcolor",
|
|
2449
2526
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2450
2527
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2457,7 +2534,7 @@ const le = () => {
|
|
|
2457
2534
|
/* @__PURE__ */ s.jsx(
|
|
2458
2535
|
"svg",
|
|
2459
2536
|
{
|
|
2460
|
-
className:
|
|
2537
|
+
className: t,
|
|
2461
2538
|
fill: "currentcolor",
|
|
2462
2539
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2463
2540
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2465,22 +2542,22 @@ const le = () => {
|
|
|
2465
2542
|
}
|
|
2466
2543
|
)
|
|
2467
2544
|
),
|
|
2468
|
-
active:
|
|
2469
|
-
disabled:
|
|
2545
|
+
active: e,
|
|
2546
|
+
disabled: n
|
|
2470
2547
|
}
|
|
2471
|
-
),
|
|
2472
|
-
active:
|
|
2473
|
-
className:
|
|
2474
|
-
disabled:
|
|
2548
|
+
), Q8 = ({
|
|
2549
|
+
active: e,
|
|
2550
|
+
className: t = "",
|
|
2551
|
+
disabled: n
|
|
2475
2552
|
}) => /* @__PURE__ */ s.jsx(
|
|
2476
|
-
|
|
2553
|
+
j,
|
|
2477
2554
|
{
|
|
2478
2555
|
ActiveImage: (
|
|
2479
2556
|
/* icon-privacy-active.svg */
|
|
2480
2557
|
/* @__PURE__ */ s.jsx(
|
|
2481
2558
|
"svg",
|
|
2482
2559
|
{
|
|
2483
|
-
className:
|
|
2560
|
+
className: t,
|
|
2484
2561
|
fill: "currentcolor",
|
|
2485
2562
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2486
2563
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2493,7 +2570,7 @@ const le = () => {
|
|
|
2493
2570
|
/* @__PURE__ */ s.jsx(
|
|
2494
2571
|
"svg",
|
|
2495
2572
|
{
|
|
2496
|
-
className:
|
|
2573
|
+
className: t,
|
|
2497
2574
|
fill: "currentcolor",
|
|
2498
2575
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2499
2576
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2506,7 +2583,7 @@ const le = () => {
|
|
|
2506
2583
|
/* @__PURE__ */ s.jsx(
|
|
2507
2584
|
"svg",
|
|
2508
2585
|
{
|
|
2509
|
-
className:
|
|
2586
|
+
className: t,
|
|
2510
2587
|
fill: "currentcolor",
|
|
2511
2588
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2512
2589
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2514,22 +2591,22 @@ const le = () => {
|
|
|
2514
2591
|
}
|
|
2515
2592
|
)
|
|
2516
2593
|
),
|
|
2517
|
-
active:
|
|
2518
|
-
disabled:
|
|
2594
|
+
active: e,
|
|
2595
|
+
disabled: n
|
|
2519
2596
|
}
|
|
2520
|
-
),
|
|
2521
|
-
active:
|
|
2522
|
-
className:
|
|
2523
|
-
disabled:
|
|
2597
|
+
), N8 = ({
|
|
2598
|
+
active: e,
|
|
2599
|
+
className: t = "",
|
|
2600
|
+
disabled: n
|
|
2524
2601
|
}) => /* @__PURE__ */ s.jsx(
|
|
2525
|
-
|
|
2602
|
+
j,
|
|
2526
2603
|
{
|
|
2527
2604
|
ActiveImage: (
|
|
2528
2605
|
/* icon-question-active.svg */
|
|
2529
2606
|
/* @__PURE__ */ s.jsx(
|
|
2530
2607
|
"svg",
|
|
2531
2608
|
{
|
|
2532
|
-
className:
|
|
2609
|
+
className: t,
|
|
2533
2610
|
fill: "currentcolor",
|
|
2534
2611
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2535
2612
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2542,7 +2619,7 @@ const le = () => {
|
|
|
2542
2619
|
/* @__PURE__ */ s.jsx(
|
|
2543
2620
|
"svg",
|
|
2544
2621
|
{
|
|
2545
|
-
className:
|
|
2622
|
+
className: t,
|
|
2546
2623
|
fill: "currentcolor",
|
|
2547
2624
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2548
2625
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2555,7 +2632,7 @@ const le = () => {
|
|
|
2555
2632
|
/* @__PURE__ */ s.jsx(
|
|
2556
2633
|
"svg",
|
|
2557
2634
|
{
|
|
2558
|
-
className:
|
|
2635
|
+
className: t,
|
|
2559
2636
|
fill: "currentcolor",
|
|
2560
2637
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2561
2638
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2563,22 +2640,22 @@ const le = () => {
|
|
|
2563
2640
|
}
|
|
2564
2641
|
)
|
|
2565
2642
|
),
|
|
2566
|
-
active:
|
|
2567
|
-
disabled:
|
|
2643
|
+
active: e,
|
|
2644
|
+
disabled: n
|
|
2568
2645
|
}
|
|
2569
|
-
),
|
|
2570
|
-
active:
|
|
2571
|
-
className:
|
|
2572
|
-
disabled:
|
|
2646
|
+
), e6 = ({
|
|
2647
|
+
active: e,
|
|
2648
|
+
className: t = "",
|
|
2649
|
+
disabled: n
|
|
2573
2650
|
}) => /* @__PURE__ */ s.jsx(
|
|
2574
|
-
|
|
2651
|
+
j,
|
|
2575
2652
|
{
|
|
2576
2653
|
ActiveImage: (
|
|
2577
2654
|
/* icon-right-active.svg */
|
|
2578
2655
|
/* @__PURE__ */ s.jsx(
|
|
2579
2656
|
"svg",
|
|
2580
2657
|
{
|
|
2581
|
-
className:
|
|
2658
|
+
className: t,
|
|
2582
2659
|
fill: "currentcolor",
|
|
2583
2660
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2584
2661
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2591,7 +2668,7 @@ const le = () => {
|
|
|
2591
2668
|
/* @__PURE__ */ s.jsx(
|
|
2592
2669
|
"svg",
|
|
2593
2670
|
{
|
|
2594
|
-
className:
|
|
2671
|
+
className: t,
|
|
2595
2672
|
fill: "currentcolor",
|
|
2596
2673
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2597
2674
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2604,7 +2681,7 @@ const le = () => {
|
|
|
2604
2681
|
/* @__PURE__ */ s.jsx(
|
|
2605
2682
|
"svg",
|
|
2606
2683
|
{
|
|
2607
|
-
className:
|
|
2684
|
+
className: t,
|
|
2608
2685
|
fill: "currentcolor",
|
|
2609
2686
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2610
2687
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2612,24 +2689,24 @@ const le = () => {
|
|
|
2612
2689
|
}
|
|
2613
2690
|
)
|
|
2614
2691
|
),
|
|
2615
|
-
active:
|
|
2616
|
-
disabled:
|
|
2692
|
+
active: e,
|
|
2693
|
+
disabled: n
|
|
2617
2694
|
}
|
|
2618
|
-
),
|
|
2619
|
-
active:
|
|
2695
|
+
), t6 = ({
|
|
2696
|
+
active: e,
|
|
2620
2697
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
2621
2698
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
2622
|
-
className:
|
|
2623
|
-
disabled:
|
|
2699
|
+
className: t = "",
|
|
2700
|
+
disabled: n
|
|
2624
2701
|
}) => /* @__PURE__ */ s.jsx(
|
|
2625
|
-
|
|
2702
|
+
j,
|
|
2626
2703
|
{
|
|
2627
2704
|
ActiveImage: (
|
|
2628
2705
|
/* icon-roomPC-active.svg */
|
|
2629
2706
|
/* @__PURE__ */ s.jsx(
|
|
2630
2707
|
"svg",
|
|
2631
2708
|
{
|
|
2632
|
-
className:
|
|
2709
|
+
className: t,
|
|
2633
2710
|
fill: "currentcolor",
|
|
2634
2711
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2635
2712
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2648,7 +2725,7 @@ const le = () => {
|
|
|
2648
2725
|
/* @__PURE__ */ s.jsx(
|
|
2649
2726
|
"svg",
|
|
2650
2727
|
{
|
|
2651
|
-
className:
|
|
2728
|
+
className: t,
|
|
2652
2729
|
fill: "currentcolor",
|
|
2653
2730
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2654
2731
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2667,7 +2744,7 @@ const le = () => {
|
|
|
2667
2744
|
/* @__PURE__ */ s.jsx(
|
|
2668
2745
|
"svg",
|
|
2669
2746
|
{
|
|
2670
|
-
className:
|
|
2747
|
+
className: t,
|
|
2671
2748
|
fill: "currentcolor",
|
|
2672
2749
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2673
2750
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2681,22 +2758,22 @@ const le = () => {
|
|
|
2681
2758
|
}
|
|
2682
2759
|
)
|
|
2683
2760
|
),
|
|
2684
|
-
active:
|
|
2685
|
-
disabled:
|
|
2761
|
+
active: e,
|
|
2762
|
+
disabled: n
|
|
2686
2763
|
}
|
|
2687
|
-
),
|
|
2688
|
-
active:
|
|
2689
|
-
className:
|
|
2690
|
-
disabled:
|
|
2764
|
+
), s6 = ({
|
|
2765
|
+
active: e,
|
|
2766
|
+
className: t = "",
|
|
2767
|
+
disabled: n
|
|
2691
2768
|
}) => /* @__PURE__ */ s.jsx(
|
|
2692
|
-
|
|
2769
|
+
j,
|
|
2693
2770
|
{
|
|
2694
2771
|
ActiveImage: (
|
|
2695
2772
|
/* icon-shade-active.svg */
|
|
2696
2773
|
/* @__PURE__ */ s.jsx(
|
|
2697
2774
|
"svg",
|
|
2698
2775
|
{
|
|
2699
|
-
className:
|
|
2776
|
+
className: t,
|
|
2700
2777
|
fill: "currentcolor",
|
|
2701
2778
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2702
2779
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2709,7 +2786,7 @@ const le = () => {
|
|
|
2709
2786
|
/* @__PURE__ */ s.jsx(
|
|
2710
2787
|
"svg",
|
|
2711
2788
|
{
|
|
2712
|
-
className:
|
|
2789
|
+
className: t,
|
|
2713
2790
|
fill: "currentcolor",
|
|
2714
2791
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2715
2792
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2722,7 +2799,7 @@ const le = () => {
|
|
|
2722
2799
|
/* @__PURE__ */ s.jsx(
|
|
2723
2800
|
"svg",
|
|
2724
2801
|
{
|
|
2725
|
-
className:
|
|
2802
|
+
className: t,
|
|
2726
2803
|
fill: "currentcolor",
|
|
2727
2804
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2728
2805
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2730,22 +2807,22 @@ const le = () => {
|
|
|
2730
2807
|
}
|
|
2731
2808
|
)
|
|
2732
2809
|
),
|
|
2733
|
-
active:
|
|
2734
|
-
disabled:
|
|
2810
|
+
active: e,
|
|
2811
|
+
disabled: n
|
|
2735
2812
|
}
|
|
2736
|
-
),
|
|
2737
|
-
active:
|
|
2738
|
-
className:
|
|
2739
|
-
disabled:
|
|
2813
|
+
), n6 = ({
|
|
2814
|
+
active: e,
|
|
2815
|
+
className: t = "",
|
|
2816
|
+
disabled: n
|
|
2740
2817
|
}) => /* @__PURE__ */ s.jsx(
|
|
2741
|
-
|
|
2818
|
+
j,
|
|
2742
2819
|
{
|
|
2743
2820
|
ActiveImage: (
|
|
2744
2821
|
/* icon-sun-active.svg */
|
|
2745
2822
|
/* @__PURE__ */ s.jsx(
|
|
2746
2823
|
"svg",
|
|
2747
2824
|
{
|
|
2748
|
-
className:
|
|
2825
|
+
className: t,
|
|
2749
2826
|
fill: "currentcolor",
|
|
2750
2827
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2751
2828
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2758,7 +2835,7 @@ const le = () => {
|
|
|
2758
2835
|
/* @__PURE__ */ s.jsx(
|
|
2759
2836
|
"svg",
|
|
2760
2837
|
{
|
|
2761
|
-
className:
|
|
2838
|
+
className: t,
|
|
2762
2839
|
fill: "currentcolor",
|
|
2763
2840
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2764
2841
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2771,7 +2848,7 @@ const le = () => {
|
|
|
2771
2848
|
/* @__PURE__ */ s.jsx(
|
|
2772
2849
|
"svg",
|
|
2773
2850
|
{
|
|
2774
|
-
className:
|
|
2851
|
+
className: t,
|
|
2775
2852
|
fill: "currentcolor",
|
|
2776
2853
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2777
2854
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2779,22 +2856,22 @@ const le = () => {
|
|
|
2779
2856
|
}
|
|
2780
2857
|
)
|
|
2781
2858
|
),
|
|
2782
|
-
active:
|
|
2783
|
-
disabled:
|
|
2859
|
+
active: e,
|
|
2860
|
+
disabled: n
|
|
2784
2861
|
}
|
|
2785
|
-
),
|
|
2786
|
-
active:
|
|
2787
|
-
className:
|
|
2788
|
-
disabled:
|
|
2862
|
+
), o6 = ({
|
|
2863
|
+
active: e,
|
|
2864
|
+
className: t = "",
|
|
2865
|
+
disabled: n
|
|
2789
2866
|
}) => /* @__PURE__ */ s.jsx(
|
|
2790
|
-
|
|
2867
|
+
j,
|
|
2791
2868
|
{
|
|
2792
2869
|
ActiveImage: (
|
|
2793
2870
|
/* icon-up-active.svg */
|
|
2794
2871
|
/* @__PURE__ */ s.jsx(
|
|
2795
2872
|
"svg",
|
|
2796
2873
|
{
|
|
2797
|
-
className:
|
|
2874
|
+
className: t,
|
|
2798
2875
|
fill: "currentcolor",
|
|
2799
2876
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2800
2877
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2807,7 +2884,7 @@ const le = () => {
|
|
|
2807
2884
|
/* @__PURE__ */ s.jsx(
|
|
2808
2885
|
"svg",
|
|
2809
2886
|
{
|
|
2810
|
-
className:
|
|
2887
|
+
className: t,
|
|
2811
2888
|
fill: "currentcolor",
|
|
2812
2889
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2813
2890
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2820,7 +2897,7 @@ const le = () => {
|
|
|
2820
2897
|
/* @__PURE__ */ s.jsx(
|
|
2821
2898
|
"svg",
|
|
2822
2899
|
{
|
|
2823
|
-
className:
|
|
2900
|
+
className: t,
|
|
2824
2901
|
fill: "currentcolor",
|
|
2825
2902
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2826
2903
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2828,22 +2905,22 @@ const le = () => {
|
|
|
2828
2905
|
}
|
|
2829
2906
|
)
|
|
2830
2907
|
),
|
|
2831
|
-
active:
|
|
2832
|
-
disabled:
|
|
2908
|
+
active: e,
|
|
2909
|
+
disabled: n
|
|
2833
2910
|
}
|
|
2834
|
-
),
|
|
2835
|
-
active:
|
|
2836
|
-
className:
|
|
2837
|
-
disabled:
|
|
2911
|
+
), c6 = ({
|
|
2912
|
+
active: e,
|
|
2913
|
+
className: t = "",
|
|
2914
|
+
disabled: n
|
|
2838
2915
|
}) => /* @__PURE__ */ s.jsx(
|
|
2839
|
-
|
|
2916
|
+
j,
|
|
2840
2917
|
{
|
|
2841
2918
|
ActiveImage: (
|
|
2842
2919
|
/* icon-volDown-active.svg */
|
|
2843
2920
|
/* @__PURE__ */ s.jsx(
|
|
2844
2921
|
"svg",
|
|
2845
2922
|
{
|
|
2846
|
-
className:
|
|
2923
|
+
className: t,
|
|
2847
2924
|
fill: "currentcolor",
|
|
2848
2925
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2849
2926
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2856,7 +2933,7 @@ const le = () => {
|
|
|
2856
2933
|
/* @__PURE__ */ s.jsx(
|
|
2857
2934
|
"svg",
|
|
2858
2935
|
{
|
|
2859
|
-
className:
|
|
2936
|
+
className: t,
|
|
2860
2937
|
fill: "currentcolor",
|
|
2861
2938
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2862
2939
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2869,7 +2946,7 @@ const le = () => {
|
|
|
2869
2946
|
/* @__PURE__ */ s.jsx(
|
|
2870
2947
|
"svg",
|
|
2871
2948
|
{
|
|
2872
|
-
className:
|
|
2949
|
+
className: t,
|
|
2873
2950
|
fill: "currentcolor",
|
|
2874
2951
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2875
2952
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2877,22 +2954,22 @@ const le = () => {
|
|
|
2877
2954
|
}
|
|
2878
2955
|
)
|
|
2879
2956
|
),
|
|
2880
|
-
active:
|
|
2881
|
-
disabled:
|
|
2957
|
+
active: e,
|
|
2958
|
+
disabled: n
|
|
2882
2959
|
}
|
|
2883
|
-
),
|
|
2884
|
-
active:
|
|
2885
|
-
className:
|
|
2886
|
-
disabled:
|
|
2960
|
+
), r6 = ({
|
|
2961
|
+
active: e,
|
|
2962
|
+
className: t = "",
|
|
2963
|
+
disabled: n
|
|
2887
2964
|
}) => /* @__PURE__ */ s.jsx(
|
|
2888
|
-
|
|
2965
|
+
j,
|
|
2889
2966
|
{
|
|
2890
2967
|
ActiveImage: (
|
|
2891
2968
|
/* icon-volMute-active.svg */
|
|
2892
2969
|
/* @__PURE__ */ s.jsx(
|
|
2893
2970
|
"svg",
|
|
2894
2971
|
{
|
|
2895
|
-
className:
|
|
2972
|
+
className: t,
|
|
2896
2973
|
fill: "currentcolor",
|
|
2897
2974
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2898
2975
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2905,7 +2982,7 @@ const le = () => {
|
|
|
2905
2982
|
/* @__PURE__ */ s.jsx(
|
|
2906
2983
|
"svg",
|
|
2907
2984
|
{
|
|
2908
|
-
className:
|
|
2985
|
+
className: t,
|
|
2909
2986
|
fill: "currentcolor",
|
|
2910
2987
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2911
2988
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2918,7 +2995,7 @@ const le = () => {
|
|
|
2918
2995
|
/* @__PURE__ */ s.jsx(
|
|
2919
2996
|
"svg",
|
|
2920
2997
|
{
|
|
2921
|
-
className:
|
|
2998
|
+
className: t,
|
|
2922
2999
|
fill: "currentcolor",
|
|
2923
3000
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2924
3001
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2926,22 +3003,22 @@ const le = () => {
|
|
|
2926
3003
|
}
|
|
2927
3004
|
)
|
|
2928
3005
|
),
|
|
2929
|
-
active:
|
|
2930
|
-
disabled:
|
|
3006
|
+
active: e,
|
|
3007
|
+
disabled: n
|
|
2931
3008
|
}
|
|
2932
|
-
),
|
|
2933
|
-
active:
|
|
2934
|
-
className:
|
|
2935
|
-
disabled:
|
|
3009
|
+
), l6 = ({
|
|
3010
|
+
active: e,
|
|
3011
|
+
className: t = "",
|
|
3012
|
+
disabled: n
|
|
2936
3013
|
}) => /* @__PURE__ */ s.jsx(
|
|
2937
|
-
|
|
3014
|
+
j,
|
|
2938
3015
|
{
|
|
2939
3016
|
ActiveImage: (
|
|
2940
3017
|
/* icon-volUp-active.svg */
|
|
2941
3018
|
/* @__PURE__ */ s.jsx(
|
|
2942
3019
|
"svg",
|
|
2943
3020
|
{
|
|
2944
|
-
className:
|
|
3021
|
+
className: t,
|
|
2945
3022
|
fill: "currentcolor",
|
|
2946
3023
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2947
3024
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2954,7 +3031,7 @@ const le = () => {
|
|
|
2954
3031
|
/* @__PURE__ */ s.jsx(
|
|
2955
3032
|
"svg",
|
|
2956
3033
|
{
|
|
2957
|
-
className:
|
|
3034
|
+
className: t,
|
|
2958
3035
|
fill: "currentcolor",
|
|
2959
3036
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2960
3037
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2967,7 +3044,7 @@ const le = () => {
|
|
|
2967
3044
|
/* @__PURE__ */ s.jsx(
|
|
2968
3045
|
"svg",
|
|
2969
3046
|
{
|
|
2970
|
-
className:
|
|
3047
|
+
className: t,
|
|
2971
3048
|
fill: "currentcolor",
|
|
2972
3049
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2973
3050
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -2975,22 +3052,22 @@ const le = () => {
|
|
|
2975
3052
|
}
|
|
2976
3053
|
)
|
|
2977
3054
|
),
|
|
2978
|
-
active:
|
|
2979
|
-
disabled:
|
|
3055
|
+
active: e,
|
|
3056
|
+
disabled: n
|
|
2980
3057
|
}
|
|
2981
|
-
),
|
|
2982
|
-
active:
|
|
2983
|
-
className:
|
|
2984
|
-
disabled:
|
|
3058
|
+
), i6 = ({
|
|
3059
|
+
active: e,
|
|
3060
|
+
className: t = "",
|
|
3061
|
+
disabled: n
|
|
2985
3062
|
}) => /* @__PURE__ */ s.jsx(
|
|
2986
|
-
|
|
3063
|
+
j,
|
|
2987
3064
|
{
|
|
2988
3065
|
ActiveImage: (
|
|
2989
3066
|
/* icon-wireless-active.svg */
|
|
2990
3067
|
/* @__PURE__ */ s.jsx(
|
|
2991
3068
|
"svg",
|
|
2992
3069
|
{
|
|
2993
|
-
className:
|
|
3070
|
+
className: t,
|
|
2994
3071
|
fill: "currentcolor",
|
|
2995
3072
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2996
3073
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -3003,7 +3080,7 @@ const le = () => {
|
|
|
3003
3080
|
/* @__PURE__ */ s.jsx(
|
|
3004
3081
|
"svg",
|
|
3005
3082
|
{
|
|
3006
|
-
className:
|
|
3083
|
+
className: t,
|
|
3007
3084
|
fill: "currentcolor",
|
|
3008
3085
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3009
3086
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -3016,7 +3093,7 @@ const le = () => {
|
|
|
3016
3093
|
/* @__PURE__ */ s.jsx(
|
|
3017
3094
|
"svg",
|
|
3018
3095
|
{
|
|
3019
|
-
className:
|
|
3096
|
+
className: t,
|
|
3020
3097
|
fill: "currentcolor",
|
|
3021
3098
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3022
3099
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -3024,22 +3101,22 @@ const le = () => {
|
|
|
3024
3101
|
}
|
|
3025
3102
|
)
|
|
3026
3103
|
),
|
|
3027
|
-
active:
|
|
3028
|
-
disabled:
|
|
3104
|
+
active: e,
|
|
3105
|
+
disabled: n
|
|
3029
3106
|
}
|
|
3030
|
-
),
|
|
3031
|
-
active:
|
|
3032
|
-
className:
|
|
3033
|
-
disabled:
|
|
3107
|
+
), a6 = ({
|
|
3108
|
+
active: e,
|
|
3109
|
+
className: t = "",
|
|
3110
|
+
disabled: n
|
|
3034
3111
|
}) => /* @__PURE__ */ s.jsx(
|
|
3035
|
-
|
|
3112
|
+
j,
|
|
3036
3113
|
{
|
|
3037
3114
|
ActiveImage: (
|
|
3038
3115
|
/* icon-x-active.svg */
|
|
3039
3116
|
/* @__PURE__ */ s.jsx(
|
|
3040
3117
|
"svg",
|
|
3041
3118
|
{
|
|
3042
|
-
className:
|
|
3119
|
+
className: t,
|
|
3043
3120
|
fill: "currentcolor",
|
|
3044
3121
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3045
3122
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -3052,7 +3129,7 @@ const le = () => {
|
|
|
3052
3129
|
/* @__PURE__ */ s.jsx(
|
|
3053
3130
|
"svg",
|
|
3054
3131
|
{
|
|
3055
|
-
className:
|
|
3132
|
+
className: t,
|
|
3056
3133
|
fill: "currentcolor",
|
|
3057
3134
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3058
3135
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -3065,7 +3142,7 @@ const le = () => {
|
|
|
3065
3142
|
/* @__PURE__ */ s.jsx(
|
|
3066
3143
|
"svg",
|
|
3067
3144
|
{
|
|
3068
|
-
className:
|
|
3145
|
+
className: t,
|
|
3069
3146
|
fill: "currentcolor",
|
|
3070
3147
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3071
3148
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -3073,22 +3150,22 @@ const le = () => {
|
|
|
3073
3150
|
}
|
|
3074
3151
|
)
|
|
3075
3152
|
),
|
|
3076
|
-
active:
|
|
3077
|
-
disabled:
|
|
3153
|
+
active: e,
|
|
3154
|
+
disabled: n
|
|
3078
3155
|
}
|
|
3079
|
-
),
|
|
3080
|
-
active:
|
|
3081
|
-
className:
|
|
3082
|
-
disabled:
|
|
3156
|
+
), u6 = ({
|
|
3157
|
+
active: e,
|
|
3158
|
+
className: t = "",
|
|
3159
|
+
disabled: n
|
|
3083
3160
|
}) => /* @__PURE__ */ s.jsx(
|
|
3084
|
-
|
|
3161
|
+
j,
|
|
3085
3162
|
{
|
|
3086
3163
|
ActiveImage: (
|
|
3087
3164
|
/* icon-xbox-active.svg */
|
|
3088
3165
|
/* @__PURE__ */ s.jsx(
|
|
3089
3166
|
"svg",
|
|
3090
3167
|
{
|
|
3091
|
-
className:
|
|
3168
|
+
className: t,
|
|
3092
3169
|
fill: "currentcolor",
|
|
3093
3170
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3094
3171
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -3101,7 +3178,7 @@ const le = () => {
|
|
|
3101
3178
|
/* @__PURE__ */ s.jsx(
|
|
3102
3179
|
"svg",
|
|
3103
3180
|
{
|
|
3104
|
-
className:
|
|
3181
|
+
className: t,
|
|
3105
3182
|
fill: "currentcolor",
|
|
3106
3183
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3107
3184
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -3114,7 +3191,7 @@ const le = () => {
|
|
|
3114
3191
|
/* @__PURE__ */ s.jsx(
|
|
3115
3192
|
"svg",
|
|
3116
3193
|
{
|
|
3117
|
-
className:
|
|
3194
|
+
className: t,
|
|
3118
3195
|
fill: "currentcolor",
|
|
3119
3196
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3120
3197
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -3122,22 +3199,22 @@ const le = () => {
|
|
|
3122
3199
|
}
|
|
3123
3200
|
)
|
|
3124
3201
|
),
|
|
3125
|
-
active:
|
|
3126
|
-
disabled:
|
|
3202
|
+
active: e,
|
|
3203
|
+
disabled: n
|
|
3127
3204
|
}
|
|
3128
|
-
),
|
|
3129
|
-
active:
|
|
3130
|
-
className:
|
|
3131
|
-
disabled:
|
|
3205
|
+
), d6 = ({
|
|
3206
|
+
active: e,
|
|
3207
|
+
className: t = "",
|
|
3208
|
+
disabled: n
|
|
3132
3209
|
}) => /* @__PURE__ */ s.jsx(
|
|
3133
|
-
|
|
3210
|
+
j,
|
|
3134
3211
|
{
|
|
3135
3212
|
ActiveImage: (
|
|
3136
3213
|
/* icon-mic-active.svg */
|
|
3137
3214
|
/* @__PURE__ */ s.jsx(
|
|
3138
3215
|
"svg",
|
|
3139
3216
|
{
|
|
3140
|
-
className:
|
|
3217
|
+
className: t,
|
|
3141
3218
|
fill: "currentcolor",
|
|
3142
3219
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3143
3220
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -3150,7 +3227,7 @@ const le = () => {
|
|
|
3150
3227
|
/* @__PURE__ */ s.jsx(
|
|
3151
3228
|
"svg",
|
|
3152
3229
|
{
|
|
3153
|
-
className:
|
|
3230
|
+
className: t,
|
|
3154
3231
|
fill: "currentcolor",
|
|
3155
3232
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3156
3233
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -3163,7 +3240,7 @@ const le = () => {
|
|
|
3163
3240
|
/* @__PURE__ */ s.jsx(
|
|
3164
3241
|
"svg",
|
|
3165
3242
|
{
|
|
3166
|
-
className:
|
|
3243
|
+
className: t,
|
|
3167
3244
|
fill: "currentcolor",
|
|
3168
3245
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3169
3246
|
viewBox: "0 0 164.61 164.61",
|
|
@@ -3171,238 +3248,239 @@ const le = () => {
|
|
|
3171
3248
|
}
|
|
3172
3249
|
)
|
|
3173
3250
|
),
|
|
3174
|
-
active:
|
|
3175
|
-
disabled:
|
|
3176
|
-
}
|
|
3177
|
-
),
|
|
3178
|
-
Alert:
|
|
3179
|
-
Camera:
|
|
3180
|
-
DownArrow:
|
|
3181
|
-
Ban:
|
|
3182
|
-
Check:
|
|
3183
|
-
Controller:
|
|
3184
|
-
Elipses:
|
|
3185
|
-
Flag:
|
|
3186
|
-
Gear:
|
|
3187
|
-
Glass:
|
|
3188
|
-
Hdmi:
|
|
3189
|
-
Laptop:
|
|
3190
|
-
LeftArrow:
|
|
3191
|
-
Light:
|
|
3192
|
-
Mic:
|
|
3193
|
-
Moon:
|
|
3194
|
-
Playstation:
|
|
3195
|
-
Podium:
|
|
3196
|
-
Power:
|
|
3197
|
-
Privacy:
|
|
3198
|
-
Question:
|
|
3199
|
-
RightArrow:
|
|
3200
|
-
RoomPC:
|
|
3201
|
-
Shade:
|
|
3202
|
-
Sun:
|
|
3203
|
-
UpArrow:
|
|
3204
|
-
VolDown:
|
|
3205
|
-
VolMute:
|
|
3206
|
-
VolUp:
|
|
3207
|
-
Wireless:
|
|
3208
|
-
X:
|
|
3209
|
-
Xbox:
|
|
3251
|
+
active: e,
|
|
3252
|
+
disabled: n
|
|
3253
|
+
}
|
|
3254
|
+
), h6 = {
|
|
3255
|
+
Alert: D8,
|
|
3256
|
+
Camera: A8,
|
|
3257
|
+
DownArrow: V8,
|
|
3258
|
+
Ban: $8,
|
|
3259
|
+
Check: B8,
|
|
3260
|
+
Controller: O8,
|
|
3261
|
+
Elipses: k8,
|
|
3262
|
+
Flag: U8,
|
|
3263
|
+
Gear: F8,
|
|
3264
|
+
Glass: W8,
|
|
3265
|
+
Hdmi: H8,
|
|
3266
|
+
Laptop: K8,
|
|
3267
|
+
LeftArrow: G8,
|
|
3268
|
+
Light: q8,
|
|
3269
|
+
Mic: d6,
|
|
3270
|
+
Moon: Y8,
|
|
3271
|
+
Playstation: z8,
|
|
3272
|
+
Podium: J8,
|
|
3273
|
+
Power: X8,
|
|
3274
|
+
Privacy: Q8,
|
|
3275
|
+
Question: N8,
|
|
3276
|
+
RightArrow: e6,
|
|
3277
|
+
RoomPC: t6,
|
|
3278
|
+
Shade: s6,
|
|
3279
|
+
Sun: n6,
|
|
3280
|
+
UpArrow: o6,
|
|
3281
|
+
VolDown: c6,
|
|
3282
|
+
VolMute: r6,
|
|
3283
|
+
VolUp: l6,
|
|
3284
|
+
Wireless: i6,
|
|
3285
|
+
X: a6,
|
|
3286
|
+
Xbox: u6
|
|
3210
3287
|
};
|
|
3211
|
-
function
|
|
3212
|
-
name:
|
|
3213
|
-
iconsDictionary:
|
|
3214
|
-
...
|
|
3288
|
+
function Je({
|
|
3289
|
+
name: e,
|
|
3290
|
+
iconsDictionary: t = h6,
|
|
3291
|
+
...n
|
|
3215
3292
|
}) {
|
|
3216
|
-
const
|
|
3217
|
-
return
|
|
3293
|
+
const c = t[e] ?? null;
|
|
3294
|
+
return c || console.error(`Icon ${e} not found in dictionary`), /* @__PURE__ */ s.jsx(P8, { multiIcon: c, ...n });
|
|
3218
3295
|
}
|
|
3219
|
-
const
|
|
3220
|
-
grid:
|
|
3221
|
-
header:
|
|
3222
|
-
content:
|
|
3223
|
-
footer:
|
|
3224
|
-
volume:
|
|
3225
|
-
},
|
|
3226
|
-
/* @__PURE__ */ s.jsx("div", { className:
|
|
3227
|
-
/* @__PURE__ */ s.jsx("div", { className:
|
|
3228
|
-
|
|
3229
|
-
/* @__PURE__ */ s.jsx("div", { className:
|
|
3230
|
-
] }),
|
|
3231
|
-
grid:
|
|
3232
|
-
header:
|
|
3233
|
-
content:
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
/* @__PURE__ */ s.jsx("div", { className:
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
|
|
3243
|
-
|
|
3244
|
-
/* @__PURE__ */ s.jsx("div", { className:
|
|
3245
|
-
/* @__PURE__ */ s.jsx("div", { className: T1.content, children: o })
|
|
3296
|
+
const v6 = "_grid_1cmpp_1", g6 = "_header_1cmpp_11", f6 = "_content_1cmpp_17", p6 = "_footer_1cmpp_23", w6 = "_volume_1cmpp_29", d1 = {
|
|
3297
|
+
grid: v6,
|
|
3298
|
+
header: g6,
|
|
3299
|
+
content: f6,
|
|
3300
|
+
footer: p6,
|
|
3301
|
+
volume: w6
|
|
3302
|
+
}, Xe = ({ header: e, footer: t, content: n, volume: c, showVolume: r }) => /* @__PURE__ */ s.jsxs("div", { className: d1.grid, children: [
|
|
3303
|
+
/* @__PURE__ */ s.jsx("div", { className: d1.header, children: e }),
|
|
3304
|
+
/* @__PURE__ */ s.jsx("div", { className: d1.content, children: n }),
|
|
3305
|
+
r && /* @__PURE__ */ s.jsx("div", { className: d1.volume, children: c }),
|
|
3306
|
+
/* @__PURE__ */ s.jsx("div", { className: d1.footer, children: t })
|
|
3307
|
+
] }), x6 = "_grid_11w5q_1", M6 = "_header_11w5q_11", m6 = "_content_11w5q_17", m1 = {
|
|
3308
|
+
grid: x6,
|
|
3309
|
+
header: M6,
|
|
3310
|
+
content: m6
|
|
3311
|
+
}, Qe = ({ className: e, header: t, content: n, leftNav: c }) => /* @__PURE__ */ s.jsxs("div", { className: `${e} ${m1.grid}`, children: [
|
|
3312
|
+
/* @__PURE__ */ s.jsx("div", { className: m1.header, children: t }),
|
|
3313
|
+
c && /* @__PURE__ */ s.jsx("div", { className: m1.leftNav, children: c }),
|
|
3314
|
+
/* @__PURE__ */ s.jsx("div", { className: m1.content, children: n })
|
|
3315
|
+
] }), Z6 = "_grid_1uwfo_1", j6 = "_header_1uwfo_11", C6 = "_content_1uwfo_17", $1 = {
|
|
3316
|
+
grid: Z6,
|
|
3317
|
+
header: j6,
|
|
3318
|
+
content: C6
|
|
3319
|
+
}, Ne = ({ className: e, header: t, content: n }) => /* @__PURE__ */ s.jsxs("div", { className: `${e} ${$1.grid}`, children: [
|
|
3320
|
+
/* @__PURE__ */ s.jsx("div", { className: $1.header, children: t }),
|
|
3321
|
+
/* @__PURE__ */ s.jsx("div", { className: $1.content, children: n })
|
|
3246
3322
|
] });
|
|
3247
|
-
function
|
|
3323
|
+
function e5() {
|
|
3248
3324
|
return console.log(location.pathname), location.pathname;
|
|
3249
3325
|
}
|
|
3250
|
-
var
|
|
3251
|
-
class
|
|
3252
|
-
constructor(
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
this.path =
|
|
3326
|
+
var S6 = /* @__PURE__ */ ((e) => (e[e.NotSet = 0] = "NotSet", e[e.Sunday = 1] = "Sunday", e[e.Monday = 2] = "Monday", e[e.Tuesday = 4] = "Tuesday", e[e.Wednesday = 8] = "Wednesday", e[e.Thursday = 16] = "Thursday", e[e.Friday = 32] = "Friday", e[e.Saturday = 64] = "Saturday", e))(S6 || {});
|
|
3327
|
+
class t5 {
|
|
3328
|
+
constructor(t, n) {
|
|
3329
|
+
G(this, "path");
|
|
3330
|
+
G(this, "handler");
|
|
3331
|
+
this.path = t, this.handler = n;
|
|
3256
3332
|
}
|
|
3257
3333
|
}
|
|
3258
|
-
const
|
|
3259
|
-
class
|
|
3334
|
+
const s5 = "$off";
|
|
3335
|
+
class n5 {
|
|
3260
3336
|
constructor() {
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3337
|
+
G(this, "currentShareText");
|
|
3338
|
+
G(this, "enabled");
|
|
3339
|
+
G(this, "isSharing");
|
|
3264
3340
|
}
|
|
3265
3341
|
}
|
|
3266
3342
|
export {
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3343
|
+
de as Clock,
|
|
3344
|
+
S6 as DaysOfWeek,
|
|
3345
|
+
ze as ErrorBox,
|
|
3346
|
+
P8 as IconButton,
|
|
3347
|
+
D8 as IconMultiAlert,
|
|
3348
|
+
$8 as IconMultiBan,
|
|
3349
|
+
A8 as IconMultiCamera,
|
|
3350
|
+
B8 as IconMultiCheck,
|
|
3351
|
+
O8 as IconMultiController,
|
|
3352
|
+
V8 as IconMultiDownArrow,
|
|
3353
|
+
k8 as IconMultiElipses,
|
|
3354
|
+
U8 as IconMultiFlag,
|
|
3355
|
+
F8 as IconMultiGear,
|
|
3356
|
+
W8 as IconMultiGlass,
|
|
3357
|
+
H8 as IconMultiHdmi,
|
|
3358
|
+
K8 as IconMultiLaptop,
|
|
3359
|
+
G8 as IconMultiLeftArrow,
|
|
3360
|
+
q8 as IconMultiLight,
|
|
3361
|
+
Y8 as IconMultiMoon,
|
|
3362
|
+
z8 as IconMultiPlaystation,
|
|
3363
|
+
J8 as IconMultiPodium,
|
|
3364
|
+
X8 as IconMultiPower,
|
|
3365
|
+
Q8 as IconMultiPrivacy,
|
|
3366
|
+
N8 as IconMultiQuestion,
|
|
3367
|
+
e6 as IconMultiRightArrow,
|
|
3368
|
+
t6 as IconMultiRoomPC,
|
|
3369
|
+
s6 as IconMultiShade,
|
|
3370
|
+
n6 as IconMultiSun,
|
|
3371
|
+
o6 as IconMultiUpArrow,
|
|
3372
|
+
c6 as IconMultiVolDown,
|
|
3373
|
+
r6 as IconMultiVolMute,
|
|
3374
|
+
l6 as IconMultiVolUp,
|
|
3375
|
+
i6 as IconMultiWireless,
|
|
3376
|
+
a6 as IconMultiX,
|
|
3377
|
+
u6 as IconMultiXbox,
|
|
3378
|
+
Xe as MainLayout,
|
|
3379
|
+
t5 as MessageHandler,
|
|
3380
|
+
ie as MobileControlProvider,
|
|
3381
|
+
j as MultiStateIconContainer,
|
|
3382
|
+
Je as NamedIconButton,
|
|
3383
|
+
n5 as ShareState,
|
|
3384
|
+
Qe as TechLayout,
|
|
3385
|
+
Ne as TechPinLayout,
|
|
3386
|
+
e5 as getBaseLocation,
|
|
3387
|
+
O1 as httpClient,
|
|
3388
|
+
s5 as roomOffSourceKey,
|
|
3389
|
+
Z as store,
|
|
3390
|
+
z as uiActions,
|
|
3391
|
+
E2 as uiReducer,
|
|
3392
|
+
T6 as useApiPath,
|
|
3393
|
+
w2 as useAppConfig,
|
|
3394
|
+
h2 as useAppDispatch,
|
|
3319
3395
|
p as useAppSelector,
|
|
3320
|
-
|
|
3396
|
+
ue as useAvrControl,
|
|
3321
3397
|
g as useButtonHeldHeartbeat,
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
|
|
3336
|
-
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
|
|
3407
|
-
|
|
3398
|
+
u8 as useClientId,
|
|
3399
|
+
y8 as useDeviceIBasicVolumeWithFeedback,
|
|
3400
|
+
he as useDevicePresetsModel,
|
|
3401
|
+
ve as useEndpoint,
|
|
3402
|
+
g8 as useError,
|
|
3403
|
+
We as useGetAllDeviceStateFromRoomConfiguration,
|
|
3404
|
+
m2 as useGetAllDevices,
|
|
3405
|
+
$6 as useGetAllRooms,
|
|
3406
|
+
ce as useGetCurrentPopoverIdForGroup,
|
|
3407
|
+
T as useGetDevice,
|
|
3408
|
+
ae as useGetIBasicVolumeWithFeedback,
|
|
3409
|
+
A6 as useGetRoom,
|
|
3410
|
+
X6 as useGetRoomDisplayStates,
|
|
3411
|
+
Q6 as useGetZoomRoomControllerKey,
|
|
3412
|
+
C3 as useIBasicVolumeWithFeedback,
|
|
3413
|
+
ge as useIChannel,
|
|
3414
|
+
fe as useIColor,
|
|
3415
|
+
pe as useICommunicationMonitor,
|
|
3416
|
+
xe as useIDPad,
|
|
3417
|
+
we as useIDeviceInfoMessenger,
|
|
3418
|
+
Me as useIDspPresets,
|
|
3419
|
+
me as useIDvr,
|
|
3420
|
+
Ze as useIEssentialsRoomCombiner,
|
|
3421
|
+
S3 as useIHasPowerControl,
|
|
3422
|
+
V1 as useIHasSelectableItems,
|
|
3423
|
+
je as useIHumiditySensor,
|
|
3424
|
+
Ce as useILevelControls,
|
|
3425
|
+
Se as useILightingScenes,
|
|
3426
|
+
be as useIMatrixRouting,
|
|
3427
|
+
Ie as useIMcCiscoCodecUserInterfaceAppControl,
|
|
3428
|
+
Re as useINumeric,
|
|
3429
|
+
ye as useIProjectorScreenLiftControl,
|
|
3430
|
+
Ee as useIRoomEventSchedule,
|
|
3431
|
+
_e as useIRunDefaultPresentRoute,
|
|
3432
|
+
Te as useIRunDirectRouteAction,
|
|
3433
|
+
Le as useIRunRouteAction,
|
|
3434
|
+
Pe as useISetTopBoxControls,
|
|
3435
|
+
De as useIShadesOpenCloseStop,
|
|
3436
|
+
$e as useIShutdownPromptTimer,
|
|
3437
|
+
Ae as useISwitchedOutput,
|
|
3438
|
+
Be as useITechPassword,
|
|
3439
|
+
Oe as useITemperatureSensor,
|
|
3440
|
+
Ve as useITheme,
|
|
3441
|
+
ke as useITransport,
|
|
3442
|
+
p8 as useInitialize,
|
|
3443
|
+
te as useIsTouchpanel,
|
|
3444
|
+
L6 as useLogoPath,
|
|
3445
|
+
Ue as useMobileControlTouchpanelController,
|
|
3446
|
+
He as useOverflow,
|
|
3447
|
+
P6 as usePartnerMetadata,
|
|
3448
|
+
R8 as usePressHoldRelease,
|
|
3449
|
+
z6 as useRoomAdvancedSharingActive,
|
|
3450
|
+
V6 as useRoomAudioControlPointList,
|
|
3451
|
+
H6 as useRoomCodecContentDestinationKey,
|
|
3452
|
+
D6 as useRoomConfiguration,
|
|
3453
|
+
U6 as useRoomDestinationList,
|
|
3454
|
+
k6 as useRoomDestinations,
|
|
3455
|
+
F6 as useRoomEnvironmentalDevices,
|
|
3456
|
+
Ke as useRoomIBasicVolumeWithFeedback,
|
|
3457
|
+
K6 as useRoomInCall,
|
|
3458
|
+
q6 as useRoomIsCoolingDown,
|
|
3459
|
+
Y6 as useRoomIsOn,
|
|
3460
|
+
G6 as useRoomIsWarmingUp,
|
|
3461
|
+
a8 as useRoomKey,
|
|
3462
|
+
Q2 as useRoomLevelControls,
|
|
3463
|
+
B6 as useRoomName,
|
|
3464
|
+
W6 as useRoomProgramAudioDestinationKey,
|
|
3465
|
+
J6 as useRoomShareState,
|
|
3466
|
+
O6 as useRoomSourceList,
|
|
3467
|
+
j1 as useRoomState,
|
|
3468
|
+
X2 as useRoomVolume,
|
|
3469
|
+
N6 as useRuntimeInfo,
|
|
3470
|
+
Ge as useScroll,
|
|
3471
|
+
v8 as useServerIsRunningOnProcessorHardware,
|
|
3472
|
+
ne as useShowIncomingCallModal,
|
|
3473
|
+
oe as useShowModal,
|
|
3474
|
+
re as useShowPopoverById,
|
|
3475
|
+
f8 as useShowReconnect,
|
|
3476
|
+
se as useShowShutdownModal,
|
|
3477
|
+
qe as useSystemControl,
|
|
3478
|
+
d8 as useSystemUuid,
|
|
3479
|
+
le as useTheme,
|
|
3480
|
+
Ye as useTimeAndDate,
|
|
3481
|
+
ee as useTouchpanelKey,
|
|
3482
|
+
Fe as useTwoWayDisplayBase,
|
|
3483
|
+
h8 as useUserCode,
|
|
3484
|
+
b as useWebsocketContext,
|
|
3485
|
+
i8 as useWsIsConnected
|
|
3408
3486
|
};
|