@pepperdash/mobile-control-react-app-core 1.10.0 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mobile-control-react-app-core.es.js +1296 -1204
- package/dist/mobile-control-react-app-core.umd.js +11 -11
- package/dist/shared/disconnectedMessage/DisconnectedMessage.d.ts.map +1 -1
- package/dist/shared/hooks/index.d.ts +2 -0
- package/dist/shared/hooks/index.d.ts.map +1 -1
- package/dist/shared/hooks/interfaces/index.d.ts +1 -0
- package/dist/shared/hooks/interfaces/index.d.ts.map +1 -1
- package/dist/shared/hooks/interfaces/useITheme.d.ts +7 -0
- package/dist/shared/hooks/interfaces/useITheme.d.ts.map +1 -0
- package/dist/shared/hooks/useOverflow.d.ts +8 -0
- package/dist/shared/hooks/useOverflow.d.ts.map +1 -0
- package/dist/shared/hooks/useScroll.d.ts +10 -0
- package/dist/shared/hooks/useScroll.d.ts.map +1 -0
- package/dist/shared/layout/ErrorBox.d.ts.map +1 -1
- package/dist/store/runtimeConfig/runtimeConfig.slice.d.ts +32 -0
- package/dist/store/runtimeConfig/runtimeConfig.slice.d.ts.map +1 -1
- package/dist/store/runtimeConfig/runtimeSelectors.d.ts +5 -0
- package/dist/store/runtimeConfig/runtimeSelectors.d.ts.map +1 -1
- package/dist/store/ui/ui.slice.d.ts +36 -0
- package/dist/store/ui/ui.slice.d.ts.map +1 -1
- package/dist/store/ui/uiSelectors.d.ts +2 -0
- package/dist/store/ui/uiSelectors.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/state/state/MobileControlTouchpanelState.d.ts +4 -1
- package/dist/types/state/state/MobileControlTouchpanelState.d.ts.map +1 -1
- package/dist/utils/WebsocketContext.d.ts +1 -0
- package/dist/utils/WebsocketContext.d.ts.map +1 -1
- package/dist/utils/WebsocketProvider.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
4
|
-
import
|
|
5
|
-
import { createSlice as
|
|
6
|
-
import { useSelector as
|
|
7
|
-
import * as
|
|
8
|
-
import
|
|
9
|
-
import { useNavigate as
|
|
10
|
-
const
|
|
1
|
+
var J3 = Object.defineProperty;
|
|
2
|
+
var X3 = (t, e, s) => e in t ? J3(t, e, { enumerable: !0, configurable: !0, writable: !0, value: s }) : t[e] = s;
|
|
3
|
+
var D = (t, e, s) => (X3(t, typeof e != "symbol" ? e + "" : e, s), s);
|
|
4
|
+
import Q3, { AxiosError as N3 } from "axios";
|
|
5
|
+
import { createSlice as d1, combineReducers as e2, configureStore as u3, createSelector as t2 } from "@reduxjs/toolkit";
|
|
6
|
+
import { useSelector as o2, useDispatch as s2, Provider as n2 } from "react-redux";
|
|
7
|
+
import * as d3 from "lodash";
|
|
8
|
+
import h3, { createContext as c2, useState as H, useRef as u1, useCallback as r1, useEffect as t1, useContext as r2, useLayoutEffect as v3 } from "react";
|
|
9
|
+
import { useNavigate as l2, useRouteError as i2, isRouteErrorResponse as a2 } from "react-router-dom";
|
|
10
|
+
const u2 = {
|
|
11
11
|
config: {
|
|
12
12
|
enableDev: !1,
|
|
13
13
|
apiPath: "",
|
|
@@ -17,47 +17,47 @@ const c2 = {
|
|
|
17
17
|
loginMode: "",
|
|
18
18
|
modes: {}
|
|
19
19
|
}
|
|
20
|
-
},
|
|
20
|
+
}, g3 = d1({
|
|
21
21
|
name: "appConfig",
|
|
22
|
-
initialState:
|
|
22
|
+
initialState: u2,
|
|
23
23
|
reducers: {
|
|
24
24
|
setAppConfig(t, e) {
|
|
25
25
|
t.config = e.payload;
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
|
-
}),
|
|
28
|
+
}), d2 = g3.actions, h2 = g3.reducer, c3 = {}, f3 = d1({
|
|
29
29
|
name: "devices",
|
|
30
|
-
initialState:
|
|
30
|
+
initialState: c3,
|
|
31
31
|
reducers: {
|
|
32
32
|
setDeviceState(t, e) {
|
|
33
33
|
const s = e.payload.type, c = s.slice(s.lastIndexOf("/") + 1);
|
|
34
34
|
if (!c)
|
|
35
35
|
return;
|
|
36
|
-
const
|
|
36
|
+
const r = e.payload.content, i = t[c] ?? {}, u = d3.merge(i, r);
|
|
37
37
|
return t[c] = u, t;
|
|
38
38
|
},
|
|
39
39
|
clearDevices() {
|
|
40
|
-
return
|
|
40
|
+
return c3;
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
|
-
}),
|
|
43
|
+
}), N = f3.actions, v2 = f3.reducer, r3 = {}, w3 = d1({
|
|
44
44
|
name: "rooms",
|
|
45
|
-
initialState:
|
|
45
|
+
initialState: r3,
|
|
46
46
|
reducers: {
|
|
47
47
|
setRoomState(t, e) {
|
|
48
48
|
const s = e.payload.type, c = s.slice(s.lastIndexOf("/") + 1);
|
|
49
49
|
if (console.log(s, c), !c)
|
|
50
50
|
return;
|
|
51
|
-
const
|
|
52
|
-
console.log(
|
|
53
|
-
const i = t[c] ?? {}, u =
|
|
51
|
+
const r = e.payload.content;
|
|
52
|
+
console.log(r);
|
|
53
|
+
const i = t[c] ?? {}, u = d3.merge(i, r);
|
|
54
54
|
return t[c] = u, console.log(t), t;
|
|
55
55
|
},
|
|
56
56
|
clearRooms() {
|
|
57
|
-
return
|
|
57
|
+
return r3;
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
|
-
}),
|
|
60
|
+
}), e1 = w3.actions, g2 = w3.reducer, f2 = {
|
|
61
61
|
apiVersion: "",
|
|
62
62
|
serverIsRunningOnProcessorHardware: !1,
|
|
63
63
|
websocket: {
|
|
@@ -67,6 +67,7 @@ const c2 = {
|
|
|
67
67
|
disconnectionMessage: "",
|
|
68
68
|
token: "",
|
|
69
69
|
currentRoomKey: "",
|
|
70
|
+
touchpanelKey: "",
|
|
70
71
|
roomData: {
|
|
71
72
|
clientId: "",
|
|
72
73
|
roomKey: "",
|
|
@@ -77,9 +78,9 @@ const c2 = {
|
|
|
77
78
|
userCode: "",
|
|
78
79
|
qrUrl: ""
|
|
79
80
|
}
|
|
80
|
-
},
|
|
81
|
+
}, p3 = d1({
|
|
81
82
|
name: "runtimeConfig",
|
|
82
|
-
initialState:
|
|
83
|
+
initialState: f2,
|
|
83
84
|
reducers: {
|
|
84
85
|
setRuntimeConfig(t, e) {
|
|
85
86
|
t.apiVersion = e.payload.apiVersion, t.serverIsRunningOnProcessorHardware = e.payload.serverIsRunningOnProcessorHardware;
|
|
@@ -97,21 +98,26 @@ const c2 = {
|
|
|
97
98
|
t.roomData = e.payload;
|
|
98
99
|
},
|
|
99
100
|
setCurrentRoomKey(t, e) {
|
|
100
|
-
|
|
101
|
+
$1.dispatch(e1.clearRooms()), $1.dispatch(N.clearDevices()), t.currentRoomKey = e.payload;
|
|
101
102
|
},
|
|
102
103
|
setUserCode(t, e) {
|
|
103
104
|
t.roomData.userCode = e.payload.userCode, t.roomData.qrUrl = e.payload.qrUrl;
|
|
105
|
+
},
|
|
106
|
+
setTouchpanelKey(t, e) {
|
|
107
|
+
t.touchpanelKey = e.payload;
|
|
104
108
|
}
|
|
105
109
|
}
|
|
106
|
-
}),
|
|
110
|
+
}), W = p3.actions, w2 = p3.reducer, p2 = {
|
|
111
|
+
showReconnect: !1,
|
|
112
|
+
error: "",
|
|
107
113
|
modalVisibility: {
|
|
108
114
|
showShutdownModal: !1,
|
|
109
115
|
showIncomingCallModal: !1
|
|
110
116
|
},
|
|
111
117
|
popoverVisibility: {}
|
|
112
|
-
},
|
|
118
|
+
}, x3 = d1({
|
|
113
119
|
name: "ui",
|
|
114
|
-
initialState:
|
|
120
|
+
initialState: p2,
|
|
115
121
|
reducers: {
|
|
116
122
|
clearAllModals(t) {
|
|
117
123
|
Object.entries(t.modalVisibility).forEach(([e]) => {
|
|
@@ -131,108 +137,114 @@ const c2 = {
|
|
|
131
137
|
t.popoverVisibility[e.payload.popoverGroup] || (t.popoverVisibility[e.payload.popoverGroup] = {}), Object.entries(t.popoverVisibility[e.payload.popoverGroup]).forEach(([s]) => {
|
|
132
138
|
t.popoverVisibility[e.payload.popoverGroup][s] = !1;
|
|
133
139
|
}), t.popoverVisibility[e.payload.popoverGroup][e.payload.popoverId] = e.payload.value;
|
|
140
|
+
},
|
|
141
|
+
setErrorMessage(t, e) {
|
|
142
|
+
t.error = e.payload;
|
|
143
|
+
},
|
|
144
|
+
setShowReconnect(t, e) {
|
|
145
|
+
t.showReconnect = e.payload;
|
|
134
146
|
}
|
|
135
147
|
}
|
|
136
|
-
}),
|
|
137
|
-
appConfig:
|
|
138
|
-
runtimeConfig:
|
|
139
|
-
rooms:
|
|
140
|
-
devices:
|
|
141
|
-
ui:
|
|
142
|
-
}),
|
|
143
|
-
reducer:
|
|
144
|
-
}),
|
|
145
|
-
function
|
|
146
|
-
return
|
|
148
|
+
}), q = x3.actions, x2 = x3.reducer, M3 = e2({
|
|
149
|
+
appConfig: h2,
|
|
150
|
+
runtimeConfig: w2,
|
|
151
|
+
rooms: g2,
|
|
152
|
+
devices: v2,
|
|
153
|
+
ui: x2
|
|
154
|
+
}), M2 = u3({
|
|
155
|
+
reducer: M3
|
|
156
|
+
}), $1 = M2, p = o2, m2 = () => p((t) => t.appConfig.config), q8 = () => p((t) => t.appConfig.config.apiPath), Z2 = () => p((t) => t.devices);
|
|
157
|
+
function $(t) {
|
|
158
|
+
return p((e) => e.devices[t] ? e.devices[t] : void 0);
|
|
147
159
|
}
|
|
148
|
-
const
|
|
160
|
+
const Y8 = (t) => p(
|
|
149
161
|
(e) => {
|
|
150
162
|
var s;
|
|
151
163
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.configuration : void 0;
|
|
152
164
|
}
|
|
153
|
-
),
|
|
165
|
+
), P1 = (t) => p(
|
|
154
166
|
(e) => e.rooms[t] ? e.rooms[t] : void 0
|
|
155
|
-
),
|
|
167
|
+
), z8 = (t) => p(
|
|
156
168
|
(e) => {
|
|
157
169
|
var s;
|
|
158
170
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.name : void 0;
|
|
159
171
|
}
|
|
160
|
-
),
|
|
172
|
+
), j2 = (t, e) => p(
|
|
161
173
|
(s) => {
|
|
162
174
|
var c;
|
|
163
175
|
return s.rooms[t] ? (c = s.rooms[t]) == null ? void 0 : c.volumes[e] : void 0;
|
|
164
176
|
}
|
|
165
|
-
),
|
|
177
|
+
), C2 = (t) => p(
|
|
166
178
|
(e) => e.rooms[t] ? e.rooms[t] : void 0
|
|
167
|
-
),
|
|
179
|
+
), J8 = (t) => p(
|
|
168
180
|
(e) => {
|
|
169
181
|
var s, c;
|
|
170
182
|
return e.rooms[t] ? (c = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : c.sourceList : void 0;
|
|
171
183
|
}
|
|
172
|
-
),
|
|
184
|
+
), X8 = (t) => p(
|
|
173
185
|
(e) => {
|
|
174
186
|
var s, c;
|
|
175
187
|
return e.rooms[t] ? (c = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : c.levelControlList : void 0;
|
|
176
188
|
}
|
|
177
|
-
),
|
|
189
|
+
), Q8 = (t) => p(
|
|
178
190
|
(e) => {
|
|
179
191
|
var s, c;
|
|
180
192
|
return e.rooms[t] ? (c = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : c.destinations : void 0;
|
|
181
193
|
}
|
|
182
|
-
),
|
|
194
|
+
), N8 = (t) => p(
|
|
183
195
|
(e) => {
|
|
184
196
|
var s, c;
|
|
185
197
|
return e.rooms[t] ? (c = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : c.destinationList : void 0;
|
|
186
198
|
}
|
|
187
|
-
),
|
|
199
|
+
), e6 = (t) => p(
|
|
188
200
|
(e) => {
|
|
189
201
|
var s, c;
|
|
190
202
|
return e.rooms[t] ? (c = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : c.environmentalDevices : void 0;
|
|
191
203
|
}
|
|
192
|
-
),
|
|
204
|
+
), t6 = (t) => p(
|
|
193
205
|
(e) => {
|
|
194
|
-
var s, c,
|
|
195
|
-
return (c = (s = e.rooms[t]) == null ? void 0 : s.configuration) != null && c.destinationList.programAudio ? (u = (i = (
|
|
206
|
+
var s, c, r, i, u, g, f, w;
|
|
207
|
+
return (c = (s = e.rooms[t]) == null ? void 0 : s.configuration) != null && c.destinationList.programAudio ? (u = (i = (r = e.rooms[t]) == null ? void 0 : r.configuration) == null ? void 0 : i.destinationList.programAudio) == null ? void 0 : u.sinkKey : ((w = (f = (g = e.rooms[t]) == null ? void 0 : g.configuration) == null ? void 0 : f.destinationList.defaultDisplay) == null ? void 0 : w.sinkKey) || "";
|
|
196
208
|
}
|
|
197
|
-
),
|
|
209
|
+
), o6 = (t) => p(
|
|
198
210
|
(e) => {
|
|
199
|
-
var s, c,
|
|
200
|
-
return e.rooms[t] ? (
|
|
211
|
+
var s, c, r;
|
|
212
|
+
return e.rooms[t] ? (r = (c = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : c.destinationList.codecContent) == null ? void 0 : r.sinkKey : void 0;
|
|
201
213
|
}
|
|
202
|
-
),
|
|
214
|
+
), s6 = (t) => p(
|
|
203
215
|
(e) => {
|
|
204
216
|
var s;
|
|
205
217
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.isInCall : void 0;
|
|
206
218
|
}
|
|
207
|
-
),
|
|
219
|
+
), n6 = (t) => p(
|
|
208
220
|
(e) => {
|
|
209
221
|
var s;
|
|
210
222
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.isWarmingUp : void 0;
|
|
211
223
|
}
|
|
212
|
-
),
|
|
224
|
+
), c6 = (t) => p(
|
|
213
225
|
(e) => {
|
|
214
226
|
var s;
|
|
215
227
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.isCoolingDown : void 0;
|
|
216
228
|
}
|
|
217
|
-
),
|
|
229
|
+
), r6 = (t) => p(
|
|
218
230
|
(e) => {
|
|
219
231
|
var s;
|
|
220
232
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.isOn : void 0;
|
|
221
233
|
}
|
|
222
|
-
),
|
|
234
|
+
), l6 = (t) => p(
|
|
223
235
|
(e) => {
|
|
224
236
|
var s;
|
|
225
237
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.advancedSharingActive : void 0;
|
|
226
238
|
}
|
|
227
|
-
),
|
|
239
|
+
), i6 = (t) => p(
|
|
228
240
|
(e) => {
|
|
229
241
|
var s;
|
|
230
242
|
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.share : void 0;
|
|
231
243
|
}
|
|
232
|
-
),
|
|
244
|
+
), a6 = (t) => t2(
|
|
233
245
|
[
|
|
234
246
|
(e, s) => s,
|
|
235
|
-
|
|
247
|
+
Z2,
|
|
236
248
|
(e) => {
|
|
237
249
|
var s, c;
|
|
238
250
|
return (c = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : c.destinations;
|
|
@@ -241,36 +253,36 @@ const P8 = (t) => Z(
|
|
|
241
253
|
(e, s, c) => {
|
|
242
254
|
if (console.log("roomKey", e), console.log("devices", s), console.log("destinations", c), !c)
|
|
243
255
|
return;
|
|
244
|
-
const
|
|
245
|
-
return Object.values(s).filter((u) => Object.values(
|
|
256
|
+
const r = Object.entries(c).filter(([u]) => u !== "programAudio" && u !== "codecContent").map(([, u]) => u);
|
|
257
|
+
return Object.values(s).filter((u) => Object.values(r).includes(u.key));
|
|
246
258
|
}
|
|
247
|
-
)(
|
|
259
|
+
)($1.getState(), t), u6 = (t) => p(
|
|
248
260
|
(e) => {
|
|
249
261
|
var s, c;
|
|
250
262
|
return e.rooms[t] ? (c = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : c.zoomRoomControllerKey : void 0;
|
|
251
263
|
}
|
|
252
|
-
),
|
|
264
|
+
), S2 = () => p((t) => t.runtimeConfig.websocket.isConnected), b2 = () => p((t) => t.runtimeConfig.currentRoomKey), I2 = () => p((t) => t.runtimeConfig.roomData.clientId), y2 = () => p((t) => t.runtimeConfig.roomData.systemUuid), R2 = () => p((t) => t.runtimeConfig.roomData.userCode), E2 = () => p((t) => t.runtimeConfig.serverIsRunningOnProcessorHardware), d6 = () => p((t) => t.runtimeConfig.touchpanelKey), h6 = () => p((t) => t.runtimeConfig.touchpanelKey !== ""), v6 = () => p((t) => t.ui.modalVisibility.showShutdownModal), g6 = () => p((t) => t.ui.modalVisibility.showIncomingCallModal), f6 = (t) => p((e) => e.ui.modalVisibility[t]), w6 = (t) => p((e) => {
|
|
253
265
|
const s = e.ui.popoverVisibility[t];
|
|
254
266
|
if (s)
|
|
255
267
|
return Object.keys(s).find((c) => s[c]);
|
|
256
|
-
}),
|
|
268
|
+
}), p6 = (t, e) => p((s) => {
|
|
257
269
|
var c;
|
|
258
270
|
return (c = s.ui.popoverVisibility[t]) == null ? void 0 : c[e];
|
|
259
|
-
}),
|
|
260
|
-
reducer:
|
|
261
|
-
}),
|
|
262
|
-
function
|
|
263
|
-
const t =
|
|
271
|
+
}), _2 = () => p((t) => t.ui.error), L2 = () => p((t) => t.ui.showReconnect), C = u3({
|
|
272
|
+
reducer: M3
|
|
273
|
+
}), $2 = s2, T1 = Q3.create();
|
|
274
|
+
function T2() {
|
|
275
|
+
const t = $2();
|
|
264
276
|
return async () => {
|
|
265
277
|
try {
|
|
266
|
-
const e = location.pathname.split("/").filter((
|
|
278
|
+
const e = location.pathname.split("/").filter((r) => r.length > 0);
|
|
267
279
|
e.length >= 5 ? e.length = 5 : e.length = 2;
|
|
268
|
-
const s = `/${e.join("/")}`, c = await
|
|
280
|
+
const s = `/${e.join("/")}`, c = await T1.get("/_local-config/_config.local.json", { baseURL: s });
|
|
269
281
|
if (c.status == 200 && c.data) {
|
|
270
|
-
const
|
|
271
|
-
t(
|
|
272
|
-
const i = await
|
|
273
|
-
i.status == 200 && i.data && t(
|
|
282
|
+
const r = c.data.apiPath;
|
|
283
|
+
t(d2.setAppConfig(c.data));
|
|
284
|
+
const i = await T1.get(`${r}/version`);
|
|
285
|
+
i.status == 200 && i.data && t(W.setRuntimeConfig(i.data));
|
|
274
286
|
}
|
|
275
287
|
} catch (e) {
|
|
276
288
|
console.error("Error getting config", e);
|
|
@@ -278,7 +290,7 @@ function C2() {
|
|
|
278
290
|
return !0;
|
|
279
291
|
};
|
|
280
292
|
}
|
|
281
|
-
var
|
|
293
|
+
var D1 = { exports: {} }, l1 = {};
|
|
282
294
|
/**
|
|
283
295
|
* @license React
|
|
284
296
|
* react-jsx-runtime.development.js
|
|
@@ -288,91 +300,91 @@ var _1 = { exports: {} }, n1 = {};
|
|
|
288
300
|
* This source code is licensed under the MIT license found in the
|
|
289
301
|
* LICENSE file in the root directory of this source tree.
|
|
290
302
|
*/
|
|
291
|
-
var
|
|
292
|
-
function
|
|
293
|
-
return
|
|
294
|
-
var t =
|
|
295
|
-
function
|
|
296
|
-
if (
|
|
303
|
+
var l3;
|
|
304
|
+
function D2() {
|
|
305
|
+
return l3 || (l3 = 1, process.env.NODE_ENV !== "production" && function() {
|
|
306
|
+
var t = h3, e = Symbol.for("react.element"), s = Symbol.for("react.portal"), c = Symbol.for("react.fragment"), r = Symbol.for("react.strict_mode"), i = Symbol.for("react.profiler"), u = Symbol.for("react.provider"), g = Symbol.for("react.context"), f = Symbol.for("react.forward_ref"), w = Symbol.for("react.suspense"), d = Symbol.for("react.suspense_list"), b = Symbol.for("react.memo"), A = Symbol.for("react.lazy"), F = Symbol.for("react.offscreen"), V = Symbol.iterator, z = "@@iterator";
|
|
307
|
+
function o1(n) {
|
|
308
|
+
if (n === null || typeof n != "object")
|
|
297
309
|
return null;
|
|
298
|
-
var
|
|
299
|
-
return typeof
|
|
310
|
+
var l = V && n[V] || n[z];
|
|
311
|
+
return typeof l == "function" ? l : null;
|
|
300
312
|
}
|
|
301
|
-
var
|
|
302
|
-
function
|
|
313
|
+
var T = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
314
|
+
function L(n) {
|
|
303
315
|
{
|
|
304
|
-
for (var
|
|
305
|
-
a[
|
|
306
|
-
|
|
316
|
+
for (var l = arguments.length, a = new Array(l > 1 ? l - 1 : 0), h = 1; h < l; h++)
|
|
317
|
+
a[h - 1] = arguments[h];
|
|
318
|
+
x1("error", n, a);
|
|
307
319
|
}
|
|
308
320
|
}
|
|
309
|
-
function
|
|
321
|
+
function x1(n, l, a) {
|
|
310
322
|
{
|
|
311
|
-
var
|
|
312
|
-
|
|
313
|
-
var
|
|
314
|
-
return String(
|
|
323
|
+
var h = T.ReactDebugCurrentFrame, j = h.getStackAddendum();
|
|
324
|
+
j !== "" && (l += "%s", a = a.concat([j]));
|
|
325
|
+
var S = a.map(function(M) {
|
|
326
|
+
return String(M);
|
|
315
327
|
});
|
|
316
|
-
|
|
328
|
+
S.unshift("Warning: " + l), Function.prototype.apply.call(console[n], console, S);
|
|
317
329
|
}
|
|
318
330
|
}
|
|
319
|
-
var
|
|
320
|
-
|
|
321
|
-
function
|
|
322
|
-
return !!(typeof
|
|
331
|
+
var M1 = !1, y = !1, Z = !1, h1 = !1, m1 = !1, K;
|
|
332
|
+
K = Symbol.for("react.module.reference");
|
|
333
|
+
function B(n) {
|
|
334
|
+
return !!(typeof n == "string" || typeof n == "function" || n === c || n === i || m1 || n === r || n === w || n === d || h1 || n === F || M1 || y || Z || typeof n == "object" && n !== null && (n.$$typeof === A || n.$$typeof === b || n.$$typeof === u || n.$$typeof === g || n.$$typeof === f || // This needs to include all possible module reference object
|
|
323
335
|
// types supported by any Flight configuration anywhere since
|
|
324
336
|
// we don't know which Flight build this will end up being used
|
|
325
337
|
// with.
|
|
326
|
-
|
|
338
|
+
n.$$typeof === K || n.getModuleId !== void 0));
|
|
327
339
|
}
|
|
328
|
-
function
|
|
329
|
-
var
|
|
330
|
-
if (
|
|
331
|
-
return
|
|
332
|
-
var
|
|
333
|
-
return
|
|
340
|
+
function R(n, l, a) {
|
|
341
|
+
var h = n.displayName;
|
|
342
|
+
if (h)
|
|
343
|
+
return h;
|
|
344
|
+
var j = l.displayName || l.name || "";
|
|
345
|
+
return j !== "" ? a + "(" + j + ")" : a;
|
|
334
346
|
}
|
|
335
|
-
function
|
|
336
|
-
return
|
|
347
|
+
function J(n) {
|
|
348
|
+
return n.displayName || "Context";
|
|
337
349
|
}
|
|
338
|
-
function
|
|
339
|
-
if (
|
|
350
|
+
function k(n) {
|
|
351
|
+
if (n == null)
|
|
340
352
|
return null;
|
|
341
|
-
if (typeof
|
|
342
|
-
return
|
|
343
|
-
if (typeof
|
|
344
|
-
return
|
|
345
|
-
switch (
|
|
353
|
+
if (typeof n.tag == "number" && L("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof n == "function")
|
|
354
|
+
return n.displayName || n.name || null;
|
|
355
|
+
if (typeof n == "string")
|
|
356
|
+
return n;
|
|
357
|
+
switch (n) {
|
|
346
358
|
case c:
|
|
347
359
|
return "Fragment";
|
|
348
360
|
case s:
|
|
349
361
|
return "Portal";
|
|
350
362
|
case i:
|
|
351
363
|
return "Profiler";
|
|
352
|
-
case
|
|
364
|
+
case r:
|
|
353
365
|
return "StrictMode";
|
|
354
|
-
case
|
|
366
|
+
case w:
|
|
355
367
|
return "Suspense";
|
|
356
|
-
case
|
|
368
|
+
case d:
|
|
357
369
|
return "SuspenseList";
|
|
358
370
|
}
|
|
359
|
-
if (typeof
|
|
360
|
-
switch (
|
|
361
|
-
case
|
|
362
|
-
var
|
|
363
|
-
return
|
|
371
|
+
if (typeof n == "object")
|
|
372
|
+
switch (n.$$typeof) {
|
|
373
|
+
case g:
|
|
374
|
+
var l = n;
|
|
375
|
+
return J(l) + ".Consumer";
|
|
364
376
|
case u:
|
|
365
|
-
var a =
|
|
366
|
-
return
|
|
367
|
-
case
|
|
368
|
-
return
|
|
377
|
+
var a = n;
|
|
378
|
+
return J(a._context) + ".Provider";
|
|
379
|
+
case f:
|
|
380
|
+
return R(n, n.render, "ForwardRef");
|
|
369
381
|
case b:
|
|
370
|
-
var
|
|
371
|
-
return
|
|
382
|
+
var h = n.displayName || null;
|
|
383
|
+
return h !== null ? h : k(n.type) || "Memo";
|
|
372
384
|
case A: {
|
|
373
|
-
var
|
|
385
|
+
var j = n, S = j._payload, M = j._init;
|
|
374
386
|
try {
|
|
375
|
-
return
|
|
387
|
+
return k(M(S));
|
|
376
388
|
} catch {
|
|
377
389
|
return null;
|
|
378
390
|
}
|
|
@@ -380,517 +392,517 @@ function S2() {
|
|
|
380
392
|
}
|
|
381
393
|
return null;
|
|
382
394
|
}
|
|
383
|
-
var
|
|
384
|
-
function
|
|
395
|
+
var G = Object.assign, s1 = 0, B1, O1, V1, k1, U1, F1, W1;
|
|
396
|
+
function H1() {
|
|
385
397
|
}
|
|
386
|
-
|
|
387
|
-
function
|
|
398
|
+
H1.__reactDisabledLog = !0;
|
|
399
|
+
function C3() {
|
|
388
400
|
{
|
|
389
|
-
if (
|
|
390
|
-
|
|
391
|
-
var
|
|
401
|
+
if (s1 === 0) {
|
|
402
|
+
B1 = console.log, O1 = console.info, V1 = console.warn, k1 = console.error, U1 = console.group, F1 = console.groupCollapsed, W1 = console.groupEnd;
|
|
403
|
+
var n = {
|
|
392
404
|
configurable: !0,
|
|
393
405
|
enumerable: !0,
|
|
394
|
-
value:
|
|
406
|
+
value: H1,
|
|
395
407
|
writable: !0
|
|
396
408
|
};
|
|
397
409
|
Object.defineProperties(console, {
|
|
398
|
-
info:
|
|
399
|
-
log:
|
|
400
|
-
warn:
|
|
401
|
-
error:
|
|
402
|
-
group:
|
|
403
|
-
groupCollapsed:
|
|
404
|
-
groupEnd:
|
|
410
|
+
info: n,
|
|
411
|
+
log: n,
|
|
412
|
+
warn: n,
|
|
413
|
+
error: n,
|
|
414
|
+
group: n,
|
|
415
|
+
groupCollapsed: n,
|
|
416
|
+
groupEnd: n
|
|
405
417
|
});
|
|
406
418
|
}
|
|
407
|
-
|
|
419
|
+
s1++;
|
|
408
420
|
}
|
|
409
421
|
}
|
|
410
|
-
function
|
|
422
|
+
function S3() {
|
|
411
423
|
{
|
|
412
|
-
if (
|
|
413
|
-
var
|
|
424
|
+
if (s1--, s1 === 0) {
|
|
425
|
+
var n = {
|
|
414
426
|
configurable: !0,
|
|
415
427
|
enumerable: !0,
|
|
416
428
|
writable: !0
|
|
417
429
|
};
|
|
418
430
|
Object.defineProperties(console, {
|
|
419
|
-
log:
|
|
420
|
-
value: D1
|
|
421
|
-
}),
|
|
422
|
-
info: F({}, o, {
|
|
431
|
+
log: G({}, n, {
|
|
423
432
|
value: B1
|
|
424
433
|
}),
|
|
425
|
-
|
|
426
|
-
value: T1
|
|
427
|
-
}),
|
|
428
|
-
error: F({}, o, {
|
|
429
|
-
value: P1
|
|
430
|
-
}),
|
|
431
|
-
group: F({}, o, {
|
|
434
|
+
info: G({}, n, {
|
|
432
435
|
value: O1
|
|
433
436
|
}),
|
|
434
|
-
|
|
437
|
+
warn: G({}, n, {
|
|
435
438
|
value: V1
|
|
436
439
|
}),
|
|
437
|
-
|
|
440
|
+
error: G({}, n, {
|
|
438
441
|
value: k1
|
|
442
|
+
}),
|
|
443
|
+
group: G({}, n, {
|
|
444
|
+
value: U1
|
|
445
|
+
}),
|
|
446
|
+
groupCollapsed: G({}, n, {
|
|
447
|
+
value: F1
|
|
448
|
+
}),
|
|
449
|
+
groupEnd: G({}, n, {
|
|
450
|
+
value: W1
|
|
439
451
|
})
|
|
440
452
|
});
|
|
441
453
|
}
|
|
442
|
-
|
|
454
|
+
s1 < 0 && L("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
|
443
455
|
}
|
|
444
456
|
}
|
|
445
|
-
var
|
|
446
|
-
function
|
|
457
|
+
var Z1 = T.ReactCurrentDispatcher, j1;
|
|
458
|
+
function v1(n, l, a) {
|
|
447
459
|
{
|
|
448
|
-
if (
|
|
460
|
+
if (j1 === void 0)
|
|
449
461
|
try {
|
|
450
462
|
throw Error();
|
|
451
|
-
} catch (
|
|
452
|
-
var
|
|
453
|
-
|
|
463
|
+
} catch (j) {
|
|
464
|
+
var h = j.stack.trim().match(/\n( *(at )?)/);
|
|
465
|
+
j1 = h && h[1] || "";
|
|
454
466
|
}
|
|
455
467
|
return `
|
|
456
|
-
` +
|
|
468
|
+
` + j1 + n;
|
|
457
469
|
}
|
|
458
470
|
}
|
|
459
|
-
var
|
|
471
|
+
var C1 = !1, g1;
|
|
460
472
|
{
|
|
461
|
-
var
|
|
462
|
-
|
|
473
|
+
var b3 = typeof WeakMap == "function" ? WeakMap : Map;
|
|
474
|
+
g1 = new b3();
|
|
463
475
|
}
|
|
464
|
-
function
|
|
465
|
-
if (!
|
|
476
|
+
function K1(n, l) {
|
|
477
|
+
if (!n || C1)
|
|
466
478
|
return "";
|
|
467
479
|
{
|
|
468
|
-
var a =
|
|
480
|
+
var a = g1.get(n);
|
|
469
481
|
if (a !== void 0)
|
|
470
482
|
return a;
|
|
471
483
|
}
|
|
472
|
-
var
|
|
473
|
-
|
|
474
|
-
var
|
|
484
|
+
var h;
|
|
485
|
+
C1 = !0;
|
|
486
|
+
var j = Error.prepareStackTrace;
|
|
475
487
|
Error.prepareStackTrace = void 0;
|
|
476
|
-
var
|
|
477
|
-
|
|
488
|
+
var S;
|
|
489
|
+
S = Z1.current, Z1.current = null, C3();
|
|
478
490
|
try {
|
|
479
|
-
if (
|
|
480
|
-
var
|
|
491
|
+
if (l) {
|
|
492
|
+
var M = function() {
|
|
481
493
|
throw Error();
|
|
482
494
|
};
|
|
483
|
-
if (Object.defineProperty(
|
|
495
|
+
if (Object.defineProperty(M.prototype, "props", {
|
|
484
496
|
set: function() {
|
|
485
497
|
throw Error();
|
|
486
498
|
}
|
|
487
499
|
}), typeof Reflect == "object" && Reflect.construct) {
|
|
488
500
|
try {
|
|
489
|
-
Reflect.construct(
|
|
490
|
-
} catch (
|
|
491
|
-
|
|
501
|
+
Reflect.construct(M, []);
|
|
502
|
+
} catch (O) {
|
|
503
|
+
h = O;
|
|
492
504
|
}
|
|
493
|
-
Reflect.construct(
|
|
505
|
+
Reflect.construct(n, [], M);
|
|
494
506
|
} else {
|
|
495
507
|
try {
|
|
496
|
-
|
|
497
|
-
} catch (
|
|
498
|
-
|
|
508
|
+
M.call();
|
|
509
|
+
} catch (O) {
|
|
510
|
+
h = O;
|
|
499
511
|
}
|
|
500
|
-
|
|
512
|
+
n.call(M.prototype);
|
|
501
513
|
}
|
|
502
514
|
} else {
|
|
503
515
|
try {
|
|
504
516
|
throw Error();
|
|
505
|
-
} catch (
|
|
506
|
-
|
|
517
|
+
} catch (O) {
|
|
518
|
+
h = O;
|
|
507
519
|
}
|
|
508
|
-
|
|
509
|
-
}
|
|
510
|
-
} catch (
|
|
511
|
-
if (
|
|
512
|
-
for (var
|
|
513
|
-
`),
|
|
514
|
-
`),
|
|
515
|
-
|
|
516
|
-
for (;
|
|
517
|
-
if (
|
|
518
|
-
if (
|
|
520
|
+
n();
|
|
521
|
+
}
|
|
522
|
+
} catch (O) {
|
|
523
|
+
if (O && h && typeof O.stack == "string") {
|
|
524
|
+
for (var x = O.stack.split(`
|
|
525
|
+
`), P = h.stack.split(`
|
|
526
|
+
`), E = x.length - 1, _ = P.length - 1; E >= 1 && _ >= 0 && x[E] !== P[_]; )
|
|
527
|
+
_--;
|
|
528
|
+
for (; E >= 1 && _ >= 0; E--, _--)
|
|
529
|
+
if (x[E] !== P[_]) {
|
|
530
|
+
if (E !== 1 || _ !== 1)
|
|
519
531
|
do
|
|
520
|
-
if (
|
|
521
|
-
var
|
|
522
|
-
` +
|
|
523
|
-
return
|
|
532
|
+
if (E--, _--, _ < 0 || x[E] !== P[_]) {
|
|
533
|
+
var U = `
|
|
534
|
+
` + x[E].replace(" at new ", " at ");
|
|
535
|
+
return n.displayName && U.includes("<anonymous>") && (U = U.replace("<anonymous>", n.displayName)), typeof n == "function" && g1.set(n, U), U;
|
|
524
536
|
}
|
|
525
|
-
while (
|
|
537
|
+
while (E >= 1 && _ >= 0);
|
|
526
538
|
break;
|
|
527
539
|
}
|
|
528
540
|
}
|
|
529
541
|
} finally {
|
|
530
|
-
|
|
542
|
+
C1 = !1, Z1.current = S, S3(), Error.prepareStackTrace = j;
|
|
531
543
|
}
|
|
532
|
-
var
|
|
533
|
-
return typeof
|
|
544
|
+
var Q = n ? n.displayName || n.name : "", Y = Q ? v1(Q) : "";
|
|
545
|
+
return typeof n == "function" && g1.set(n, Y), Y;
|
|
534
546
|
}
|
|
535
|
-
function
|
|
536
|
-
return
|
|
547
|
+
function I3(n, l, a) {
|
|
548
|
+
return K1(n, !1);
|
|
537
549
|
}
|
|
538
|
-
function
|
|
539
|
-
var
|
|
540
|
-
return !!(
|
|
550
|
+
function y3(n) {
|
|
551
|
+
var l = n.prototype;
|
|
552
|
+
return !!(l && l.isReactComponent);
|
|
541
553
|
}
|
|
542
|
-
function
|
|
543
|
-
if (
|
|
554
|
+
function f1(n, l, a) {
|
|
555
|
+
if (n == null)
|
|
544
556
|
return "";
|
|
545
|
-
if (typeof
|
|
546
|
-
return
|
|
547
|
-
if (typeof
|
|
548
|
-
return
|
|
549
|
-
switch (
|
|
550
|
-
case
|
|
551
|
-
return
|
|
552
|
-
case
|
|
553
|
-
return
|
|
557
|
+
if (typeof n == "function")
|
|
558
|
+
return K1(n, y3(n));
|
|
559
|
+
if (typeof n == "string")
|
|
560
|
+
return v1(n);
|
|
561
|
+
switch (n) {
|
|
562
|
+
case w:
|
|
563
|
+
return v1("Suspense");
|
|
564
|
+
case d:
|
|
565
|
+
return v1("SuspenseList");
|
|
554
566
|
}
|
|
555
|
-
if (typeof
|
|
556
|
-
switch (
|
|
557
|
-
case
|
|
558
|
-
return
|
|
567
|
+
if (typeof n == "object")
|
|
568
|
+
switch (n.$$typeof) {
|
|
569
|
+
case f:
|
|
570
|
+
return I3(n.render);
|
|
559
571
|
case b:
|
|
560
|
-
return
|
|
572
|
+
return f1(n.type, l, a);
|
|
561
573
|
case A: {
|
|
562
|
-
var
|
|
574
|
+
var h = n, j = h._payload, S = h._init;
|
|
563
575
|
try {
|
|
564
|
-
return
|
|
576
|
+
return f1(S(j), l, a);
|
|
565
577
|
} catch {
|
|
566
578
|
}
|
|
567
579
|
}
|
|
568
580
|
}
|
|
569
581
|
return "";
|
|
570
582
|
}
|
|
571
|
-
var
|
|
572
|
-
function
|
|
573
|
-
if (
|
|
574
|
-
var
|
|
575
|
-
|
|
583
|
+
var n1 = Object.prototype.hasOwnProperty, G1 = {}, q1 = T.ReactDebugCurrentFrame;
|
|
584
|
+
function w1(n) {
|
|
585
|
+
if (n) {
|
|
586
|
+
var l = n._owner, a = f1(n.type, n._source, l ? l.type : null);
|
|
587
|
+
q1.setExtraStackFrame(a);
|
|
576
588
|
} else
|
|
577
|
-
|
|
589
|
+
q1.setExtraStackFrame(null);
|
|
578
590
|
}
|
|
579
|
-
function
|
|
591
|
+
function R3(n, l, a, h, j) {
|
|
580
592
|
{
|
|
581
|
-
var
|
|
582
|
-
for (var
|
|
583
|
-
if (
|
|
584
|
-
var
|
|
593
|
+
var S = Function.call.bind(n1);
|
|
594
|
+
for (var M in n)
|
|
595
|
+
if (S(n, M)) {
|
|
596
|
+
var x = void 0;
|
|
585
597
|
try {
|
|
586
|
-
if (typeof
|
|
587
|
-
var
|
|
588
|
-
throw
|
|
598
|
+
if (typeof n[M] != "function") {
|
|
599
|
+
var P = Error((h || "React class") + ": " + a + " type `" + M + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof n[M] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
600
|
+
throw P.name = "Invariant Violation", P;
|
|
589
601
|
}
|
|
590
|
-
|
|
591
|
-
} catch (
|
|
592
|
-
|
|
602
|
+
x = n[M](l, M, h, a, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
603
|
+
} catch (E) {
|
|
604
|
+
x = E;
|
|
593
605
|
}
|
|
594
|
-
|
|
606
|
+
x && !(x instanceof Error) && (w1(j), L("%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).", h || "React class", a, M, typeof x), w1(null)), x instanceof Error && !(x.message in G1) && (G1[x.message] = !0, w1(j), L("Failed %s type: %s", a, x.message), w1(null));
|
|
595
607
|
}
|
|
596
608
|
}
|
|
597
609
|
}
|
|
598
|
-
var
|
|
599
|
-
function
|
|
600
|
-
return
|
|
610
|
+
var E3 = Array.isArray;
|
|
611
|
+
function S1(n) {
|
|
612
|
+
return E3(n);
|
|
601
613
|
}
|
|
602
|
-
function
|
|
614
|
+
function _3(n) {
|
|
603
615
|
{
|
|
604
|
-
var
|
|
616
|
+
var l = typeof Symbol == "function" && Symbol.toStringTag, a = l && n[Symbol.toStringTag] || n.constructor.name || "Object";
|
|
605
617
|
return a;
|
|
606
618
|
}
|
|
607
619
|
}
|
|
608
|
-
function
|
|
620
|
+
function L3(n) {
|
|
609
621
|
try {
|
|
610
|
-
return
|
|
622
|
+
return Y1(n), !1;
|
|
611
623
|
} catch {
|
|
612
624
|
return !0;
|
|
613
625
|
}
|
|
614
626
|
}
|
|
615
|
-
function
|
|
616
|
-
return "" +
|
|
627
|
+
function Y1(n) {
|
|
628
|
+
return "" + n;
|
|
617
629
|
}
|
|
618
|
-
function
|
|
619
|
-
if (
|
|
620
|
-
return
|
|
630
|
+
function z1(n) {
|
|
631
|
+
if (L3(n))
|
|
632
|
+
return L("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", _3(n)), Y1(n);
|
|
621
633
|
}
|
|
622
|
-
var
|
|
634
|
+
var c1 = T.ReactCurrentOwner, $3 = {
|
|
623
635
|
key: !0,
|
|
624
636
|
ref: !0,
|
|
625
637
|
__self: !0,
|
|
626
638
|
__source: !0
|
|
627
|
-
},
|
|
628
|
-
|
|
629
|
-
function
|
|
630
|
-
if (
|
|
631
|
-
var
|
|
632
|
-
if (
|
|
639
|
+
}, J1, X1, b1;
|
|
640
|
+
b1 = {};
|
|
641
|
+
function T3(n) {
|
|
642
|
+
if (n1.call(n, "ref")) {
|
|
643
|
+
var l = Object.getOwnPropertyDescriptor(n, "ref").get;
|
|
644
|
+
if (l && l.isReactWarning)
|
|
633
645
|
return !1;
|
|
634
646
|
}
|
|
635
|
-
return
|
|
647
|
+
return n.ref !== void 0;
|
|
636
648
|
}
|
|
637
|
-
function
|
|
638
|
-
if (
|
|
639
|
-
var
|
|
640
|
-
if (
|
|
649
|
+
function D3(n) {
|
|
650
|
+
if (n1.call(n, "key")) {
|
|
651
|
+
var l = Object.getOwnPropertyDescriptor(n, "key").get;
|
|
652
|
+
if (l && l.isReactWarning)
|
|
641
653
|
return !1;
|
|
642
654
|
}
|
|
643
|
-
return
|
|
655
|
+
return n.key !== void 0;
|
|
644
656
|
}
|
|
645
|
-
function A3(
|
|
646
|
-
if (typeof
|
|
647
|
-
var a =
|
|
648
|
-
|
|
657
|
+
function A3(n, l) {
|
|
658
|
+
if (typeof n.ref == "string" && c1.current && l && c1.current.stateNode !== l) {
|
|
659
|
+
var a = k(c1.current.type);
|
|
660
|
+
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', k(c1.current.type), n.ref), b1[a] = !0);
|
|
649
661
|
}
|
|
650
662
|
}
|
|
651
|
-
function
|
|
663
|
+
function P3(n, l) {
|
|
652
664
|
{
|
|
653
665
|
var a = function() {
|
|
654
|
-
|
|
666
|
+
J1 || (J1 = !0, L("%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));
|
|
655
667
|
};
|
|
656
|
-
a.isReactWarning = !0, Object.defineProperty(
|
|
668
|
+
a.isReactWarning = !0, Object.defineProperty(n, "key", {
|
|
657
669
|
get: a,
|
|
658
670
|
configurable: !0
|
|
659
671
|
});
|
|
660
672
|
}
|
|
661
673
|
}
|
|
662
|
-
function B3(
|
|
674
|
+
function B3(n, l) {
|
|
663
675
|
{
|
|
664
676
|
var a = function() {
|
|
665
|
-
|
|
677
|
+
X1 || (X1 = !0, L("%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));
|
|
666
678
|
};
|
|
667
|
-
a.isReactWarning = !0, Object.defineProperty(
|
|
679
|
+
a.isReactWarning = !0, Object.defineProperty(n, "ref", {
|
|
668
680
|
get: a,
|
|
669
681
|
configurable: !0
|
|
670
682
|
});
|
|
671
683
|
}
|
|
672
684
|
}
|
|
673
|
-
var
|
|
674
|
-
var
|
|
685
|
+
var O3 = function(n, l, a, h, j, S, M) {
|
|
686
|
+
var x = {
|
|
675
687
|
// This tag allows us to uniquely identify this as a React Element
|
|
676
688
|
$$typeof: e,
|
|
677
689
|
// Built-in properties that belong on the element
|
|
678
|
-
type:
|
|
679
|
-
key:
|
|
690
|
+
type: n,
|
|
691
|
+
key: l,
|
|
680
692
|
ref: a,
|
|
681
|
-
props:
|
|
693
|
+
props: M,
|
|
682
694
|
// Record the component responsible for creating this element.
|
|
683
|
-
_owner:
|
|
695
|
+
_owner: S
|
|
684
696
|
};
|
|
685
|
-
return
|
|
697
|
+
return x._store = {}, Object.defineProperty(x._store, "validated", {
|
|
686
698
|
configurable: !1,
|
|
687
699
|
enumerable: !1,
|
|
688
700
|
writable: !0,
|
|
689
701
|
value: !1
|
|
690
|
-
}), Object.defineProperty(
|
|
702
|
+
}), Object.defineProperty(x, "_self", {
|
|
691
703
|
configurable: !1,
|
|
692
704
|
enumerable: !1,
|
|
693
705
|
writable: !1,
|
|
694
|
-
value:
|
|
695
|
-
}), Object.defineProperty(
|
|
706
|
+
value: h
|
|
707
|
+
}), Object.defineProperty(x, "_source", {
|
|
696
708
|
configurable: !1,
|
|
697
709
|
enumerable: !1,
|
|
698
710
|
writable: !1,
|
|
699
|
-
value:
|
|
700
|
-
}), Object.freeze && (Object.freeze(
|
|
711
|
+
value: j
|
|
712
|
+
}), Object.freeze && (Object.freeze(x.props), Object.freeze(x)), x;
|
|
701
713
|
};
|
|
702
|
-
function
|
|
714
|
+
function V3(n, l, a, h, j) {
|
|
703
715
|
{
|
|
704
|
-
var
|
|
705
|
-
a !== void 0 && (
|
|
706
|
-
for (
|
|
707
|
-
|
|
708
|
-
if (
|
|
709
|
-
var
|
|
710
|
-
for (
|
|
711
|
-
|
|
712
|
-
}
|
|
713
|
-
if (
|
|
714
|
-
var
|
|
715
|
-
|
|
716
|
-
}
|
|
717
|
-
return
|
|
716
|
+
var S, M = {}, x = null, P = null;
|
|
717
|
+
a !== void 0 && (z1(a), x = "" + a), D3(l) && (z1(l.key), x = "" + l.key), T3(l) && (P = l.ref, A3(l, j));
|
|
718
|
+
for (S in l)
|
|
719
|
+
n1.call(l, S) && !$3.hasOwnProperty(S) && (M[S] = l[S]);
|
|
720
|
+
if (n && n.defaultProps) {
|
|
721
|
+
var E = n.defaultProps;
|
|
722
|
+
for (S in E)
|
|
723
|
+
M[S] === void 0 && (M[S] = E[S]);
|
|
724
|
+
}
|
|
725
|
+
if (x || P) {
|
|
726
|
+
var _ = typeof n == "function" ? n.displayName || n.name || "Unknown" : n;
|
|
727
|
+
x && P3(M, _), P && B3(M, _);
|
|
728
|
+
}
|
|
729
|
+
return O3(n, x, P, j, h, c1.current, M);
|
|
718
730
|
}
|
|
719
731
|
}
|
|
720
|
-
var
|
|
721
|
-
function
|
|
722
|
-
if (
|
|
723
|
-
var
|
|
724
|
-
|
|
732
|
+
var I1 = T.ReactCurrentOwner, Q1 = T.ReactDebugCurrentFrame;
|
|
733
|
+
function X(n) {
|
|
734
|
+
if (n) {
|
|
735
|
+
var l = n._owner, a = f1(n.type, n._source, l ? l.type : null);
|
|
736
|
+
Q1.setExtraStackFrame(a);
|
|
725
737
|
} else
|
|
726
|
-
|
|
738
|
+
Q1.setExtraStackFrame(null);
|
|
727
739
|
}
|
|
728
|
-
var
|
|
729
|
-
|
|
730
|
-
function
|
|
731
|
-
return typeof
|
|
740
|
+
var y1;
|
|
741
|
+
y1 = !1;
|
|
742
|
+
function R1(n) {
|
|
743
|
+
return typeof n == "object" && n !== null && n.$$typeof === e;
|
|
732
744
|
}
|
|
733
|
-
function
|
|
745
|
+
function N1() {
|
|
734
746
|
{
|
|
735
|
-
if (
|
|
736
|
-
var
|
|
737
|
-
if (
|
|
747
|
+
if (I1.current) {
|
|
748
|
+
var n = k(I1.current.type);
|
|
749
|
+
if (n)
|
|
738
750
|
return `
|
|
739
751
|
|
|
740
|
-
Check the render method of \`` +
|
|
752
|
+
Check the render method of \`` + n + "`.";
|
|
741
753
|
}
|
|
742
754
|
return "";
|
|
743
755
|
}
|
|
744
756
|
}
|
|
745
|
-
function
|
|
757
|
+
function k3(n) {
|
|
746
758
|
{
|
|
747
|
-
if (
|
|
748
|
-
var
|
|
759
|
+
if (n !== void 0) {
|
|
760
|
+
var l = n.fileName.replace(/^.*[\\\/]/, ""), a = n.lineNumber;
|
|
749
761
|
return `
|
|
750
762
|
|
|
751
|
-
Check your code at ` +
|
|
763
|
+
Check your code at ` + l + ":" + a + ".";
|
|
752
764
|
}
|
|
753
765
|
return "";
|
|
754
766
|
}
|
|
755
767
|
}
|
|
756
|
-
var
|
|
757
|
-
function
|
|
768
|
+
var e3 = {};
|
|
769
|
+
function U3(n) {
|
|
758
770
|
{
|
|
759
|
-
var
|
|
760
|
-
if (!
|
|
761
|
-
var a = typeof
|
|
762
|
-
a && (
|
|
771
|
+
var l = N1();
|
|
772
|
+
if (!l) {
|
|
773
|
+
var a = typeof n == "string" ? n : n.displayName || n.name;
|
|
774
|
+
a && (l = `
|
|
763
775
|
|
|
764
776
|
Check the top-level render call using <` + a + ">.");
|
|
765
777
|
}
|
|
766
|
-
return
|
|
778
|
+
return l;
|
|
767
779
|
}
|
|
768
780
|
}
|
|
769
|
-
function
|
|
781
|
+
function t3(n, l) {
|
|
770
782
|
{
|
|
771
|
-
if (!
|
|
783
|
+
if (!n._store || n._store.validated || n.key != null)
|
|
772
784
|
return;
|
|
773
|
-
|
|
774
|
-
var a =
|
|
775
|
-
if (
|
|
785
|
+
n._store.validated = !0;
|
|
786
|
+
var a = U3(l);
|
|
787
|
+
if (e3[a])
|
|
776
788
|
return;
|
|
777
|
-
|
|
778
|
-
var
|
|
779
|
-
|
|
789
|
+
e3[a] = !0;
|
|
790
|
+
var h = "";
|
|
791
|
+
n && n._owner && n._owner !== I1.current && (h = " It was passed a child from " + k(n._owner.type) + "."), X(n), L('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', a, h), X(null);
|
|
780
792
|
}
|
|
781
793
|
}
|
|
782
|
-
function
|
|
794
|
+
function o3(n, l) {
|
|
783
795
|
{
|
|
784
|
-
if (typeof
|
|
796
|
+
if (typeof n != "object")
|
|
785
797
|
return;
|
|
786
|
-
if (
|
|
787
|
-
for (var a = 0; a <
|
|
788
|
-
var
|
|
789
|
-
|
|
798
|
+
if (S1(n))
|
|
799
|
+
for (var a = 0; a < n.length; a++) {
|
|
800
|
+
var h = n[a];
|
|
801
|
+
R1(h) && t3(h, l);
|
|
790
802
|
}
|
|
791
|
-
else if (
|
|
792
|
-
|
|
793
|
-
else if (
|
|
794
|
-
var
|
|
795
|
-
if (typeof
|
|
796
|
-
for (var
|
|
797
|
-
|
|
803
|
+
else if (R1(n))
|
|
804
|
+
n._store && (n._store.validated = !0);
|
|
805
|
+
else if (n) {
|
|
806
|
+
var j = o1(n);
|
|
807
|
+
if (typeof j == "function" && j !== n.entries)
|
|
808
|
+
for (var S = j.call(n), M; !(M = S.next()).done; )
|
|
809
|
+
R1(M.value) && t3(M.value, l);
|
|
798
810
|
}
|
|
799
811
|
}
|
|
800
812
|
}
|
|
801
|
-
function
|
|
813
|
+
function F3(n) {
|
|
802
814
|
{
|
|
803
|
-
var
|
|
804
|
-
if (
|
|
815
|
+
var l = n.type;
|
|
816
|
+
if (l == null || typeof l == "string")
|
|
805
817
|
return;
|
|
806
818
|
var a;
|
|
807
|
-
if (typeof
|
|
808
|
-
a =
|
|
809
|
-
else if (typeof
|
|
819
|
+
if (typeof l == "function")
|
|
820
|
+
a = l.propTypes;
|
|
821
|
+
else if (typeof l == "object" && (l.$$typeof === f || // Note: Memo only checks outer props here.
|
|
810
822
|
// Inner props are checked in the reconciler.
|
|
811
|
-
|
|
812
|
-
a =
|
|
823
|
+
l.$$typeof === b))
|
|
824
|
+
a = l.propTypes;
|
|
813
825
|
else
|
|
814
826
|
return;
|
|
815
827
|
if (a) {
|
|
816
|
-
var
|
|
817
|
-
|
|
818
|
-
} else if (
|
|
819
|
-
|
|
820
|
-
var
|
|
821
|
-
|
|
822
|
-
}
|
|
823
|
-
typeof
|
|
828
|
+
var h = k(l);
|
|
829
|
+
R3(a, n.props, "prop", h, n);
|
|
830
|
+
} else if (l.PropTypes !== void 0 && !y1) {
|
|
831
|
+
y1 = !0;
|
|
832
|
+
var j = k(l);
|
|
833
|
+
L("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", j || "Unknown");
|
|
834
|
+
}
|
|
835
|
+
typeof l.getDefaultProps == "function" && !l.getDefaultProps.isReactClassApproved && L("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
|
824
836
|
}
|
|
825
837
|
}
|
|
826
|
-
function
|
|
838
|
+
function W3(n) {
|
|
827
839
|
{
|
|
828
|
-
for (var
|
|
829
|
-
var
|
|
830
|
-
if (
|
|
831
|
-
|
|
840
|
+
for (var l = Object.keys(n.props), a = 0; a < l.length; a++) {
|
|
841
|
+
var h = l[a];
|
|
842
|
+
if (h !== "children" && h !== "key") {
|
|
843
|
+
X(n), L("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", h), X(null);
|
|
832
844
|
break;
|
|
833
845
|
}
|
|
834
846
|
}
|
|
835
|
-
|
|
847
|
+
n.ref !== null && (X(n), L("Invalid attribute `ref` supplied to `React.Fragment`."), X(null));
|
|
836
848
|
}
|
|
837
849
|
}
|
|
838
|
-
var
|
|
839
|
-
function
|
|
850
|
+
var s3 = {};
|
|
851
|
+
function n3(n, l, a, h, j, S) {
|
|
840
852
|
{
|
|
841
|
-
var
|
|
842
|
-
if (!
|
|
843
|
-
var
|
|
844
|
-
(
|
|
845
|
-
var
|
|
846
|
-
|
|
847
|
-
var
|
|
848
|
-
|
|
849
|
-
}
|
|
850
|
-
var
|
|
851
|
-
if (
|
|
852
|
-
return
|
|
853
|
-
if (
|
|
854
|
-
var
|
|
855
|
-
if (
|
|
856
|
-
if (
|
|
857
|
-
if (
|
|
858
|
-
for (var
|
|
859
|
-
|
|
860
|
-
Object.freeze && Object.freeze(
|
|
853
|
+
var M = B(n);
|
|
854
|
+
if (!M) {
|
|
855
|
+
var x = "";
|
|
856
|
+
(n === void 0 || typeof n == "object" && n !== null && Object.keys(n).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.");
|
|
857
|
+
var P = k3(j);
|
|
858
|
+
P ? x += P : x += N1();
|
|
859
|
+
var E;
|
|
860
|
+
n === null ? E = "null" : S1(n) ? E = "array" : n !== void 0 && n.$$typeof === e ? (E = "<" + (k(n.type) || "Unknown") + " />", x = " Did you accidentally export a JSX literal instead of a component?") : E = typeof n, L("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", E, x);
|
|
861
|
+
}
|
|
862
|
+
var _ = V3(n, l, a, j, S);
|
|
863
|
+
if (_ == null)
|
|
864
|
+
return _;
|
|
865
|
+
if (M) {
|
|
866
|
+
var U = l.children;
|
|
867
|
+
if (U !== void 0)
|
|
868
|
+
if (h)
|
|
869
|
+
if (S1(U)) {
|
|
870
|
+
for (var Q = 0; Q < U.length; Q++)
|
|
871
|
+
o3(U[Q], n);
|
|
872
|
+
Object.freeze && Object.freeze(U);
|
|
861
873
|
} else
|
|
862
|
-
|
|
874
|
+
L("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
|
863
875
|
else
|
|
864
|
-
|
|
865
|
-
}
|
|
866
|
-
if (
|
|
867
|
-
var
|
|
868
|
-
return
|
|
869
|
-
}),
|
|
870
|
-
if (!
|
|
871
|
-
var
|
|
872
|
-
|
|
876
|
+
o3(U, n);
|
|
877
|
+
}
|
|
878
|
+
if (n1.call(l, "key")) {
|
|
879
|
+
var Y = k(n), O = Object.keys(l).filter(function(z3) {
|
|
880
|
+
return z3 !== "key";
|
|
881
|
+
}), E1 = O.length > 0 ? "{key: someKey, " + O.join(": ..., ") + ": ...}" : "{key: someKey}";
|
|
882
|
+
if (!s3[Y + E1]) {
|
|
883
|
+
var Y3 = O.length > 0 ? "{" + O.join(": ..., ") + ": ...}" : "{}";
|
|
884
|
+
L(`A props object containing a "key" prop is being spread into JSX:
|
|
873
885
|
let props = %s;
|
|
874
886
|
<%s {...props} />
|
|
875
887
|
React keys must be passed directly to JSX without using spread:
|
|
876
888
|
let props = %s;
|
|
877
|
-
<%s key={someKey} {...props} />`,
|
|
889
|
+
<%s key={someKey} {...props} />`, E1, Y, Y3, Y), s3[Y + E1] = !0;
|
|
878
890
|
}
|
|
879
891
|
}
|
|
880
|
-
return
|
|
892
|
+
return n === c ? W3(_) : F3(_), _;
|
|
881
893
|
}
|
|
882
894
|
}
|
|
883
|
-
function
|
|
884
|
-
return
|
|
895
|
+
function H3(n, l, a) {
|
|
896
|
+
return n3(n, l, a, !0);
|
|
885
897
|
}
|
|
886
|
-
function
|
|
887
|
-
return
|
|
898
|
+
function K3(n, l, a) {
|
|
899
|
+
return n3(n, l, a, !1);
|
|
888
900
|
}
|
|
889
|
-
var
|
|
890
|
-
|
|
891
|
-
}()),
|
|
901
|
+
var G3 = K3, q3 = H3;
|
|
902
|
+
l1.Fragment = c, l1.jsx = G3, l1.jsxs = q3;
|
|
903
|
+
}()), l1;
|
|
892
904
|
}
|
|
893
|
-
var
|
|
905
|
+
var i1 = {};
|
|
894
906
|
/**
|
|
895
907
|
* @license React
|
|
896
908
|
* react-jsx-runtime.production.min.js
|
|
@@ -900,227 +912,259 @@ var s1 = {};
|
|
|
900
912
|
* This source code is licensed under the MIT license found in the
|
|
901
913
|
* LICENSE file in the root directory of this source tree.
|
|
902
914
|
*/
|
|
903
|
-
var
|
|
904
|
-
function
|
|
905
|
-
if (
|
|
906
|
-
return
|
|
907
|
-
|
|
908
|
-
var t =
|
|
909
|
-
function u(
|
|
910
|
-
var
|
|
911
|
-
|
|
912
|
-
for (
|
|
913
|
-
c.call(
|
|
914
|
-
if (
|
|
915
|
-
for (
|
|
916
|
-
b[
|
|
917
|
-
return { $$typeof: e, type:
|
|
918
|
-
}
|
|
919
|
-
return
|
|
915
|
+
var i3;
|
|
916
|
+
function A2() {
|
|
917
|
+
if (i3)
|
|
918
|
+
return i1;
|
|
919
|
+
i3 = 1;
|
|
920
|
+
var t = h3, e = Symbol.for("react.element"), s = Symbol.for("react.fragment"), c = Object.prototype.hasOwnProperty, r = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, i = { key: !0, ref: !0, __self: !0, __source: !0 };
|
|
921
|
+
function u(g, f, w) {
|
|
922
|
+
var d, b = {}, A = null, F = null;
|
|
923
|
+
w !== void 0 && (A = "" + w), f.key !== void 0 && (A = "" + f.key), f.ref !== void 0 && (F = f.ref);
|
|
924
|
+
for (d in f)
|
|
925
|
+
c.call(f, d) && !i.hasOwnProperty(d) && (b[d] = f[d]);
|
|
926
|
+
if (g && g.defaultProps)
|
|
927
|
+
for (d in f = g.defaultProps, f)
|
|
928
|
+
b[d] === void 0 && (b[d] = f[d]);
|
|
929
|
+
return { $$typeof: e, type: g, key: A, ref: F, props: b, _owner: r.current };
|
|
930
|
+
}
|
|
931
|
+
return i1.Fragment = s, i1.jsx = u, i1.jsxs = u, i1;
|
|
920
932
|
}
|
|
921
|
-
process.env.NODE_ENV === "production" ?
|
|
922
|
-
var
|
|
923
|
-
const
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
933
|
+
process.env.NODE_ENV === "production" ? D1.exports = A2() : D1.exports = D2();
|
|
934
|
+
var o = D1.exports;
|
|
935
|
+
const P2 = "_mwfit_ppa3l_1", B2 = {
|
|
936
|
+
mwfit: P2
|
|
937
|
+
}, O2 = () => {
|
|
938
|
+
const { reconnect: t } = I(), e = _2(), s = L2();
|
|
939
|
+
return /* @__PURE__ */ o.jsx(o.Fragment, { children: /* @__PURE__ */ o.jsxs("div", { className: `disconnected-message ${B2.mwfit} mx-auto text-center`, children: [
|
|
940
|
+
/* @__PURE__ */ o.jsx("h1", { children: "Disconnected" }),
|
|
941
|
+
e && /* @__PURE__ */ o.jsx("h5", { children: e }),
|
|
942
|
+
s && /* @__PURE__ */ o.jsx("button", { className: "btn btn-secondary btn-lg", onClick: t, children: "Reconnect" })
|
|
943
|
+
] }) });
|
|
944
|
+
};
|
|
945
|
+
class V2 {
|
|
928
946
|
constructor() {
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
947
|
+
D(this, "uuid", "current-uuid");
|
|
948
|
+
D(this, "roomKey", "current-room-key");
|
|
949
|
+
D(this, "code", "current-code");
|
|
950
|
+
D(this, "expiry", "current-uuid-expires");
|
|
933
951
|
}
|
|
934
952
|
}
|
|
935
|
-
const
|
|
953
|
+
const a3 = new V2(), m3 = c2({
|
|
936
954
|
sendMessage: () => null,
|
|
937
955
|
sendSimpleMessage: () => null,
|
|
938
956
|
addEventHandler: () => null,
|
|
939
|
-
removeEventHandler: () => null
|
|
957
|
+
removeEventHandler: () => null,
|
|
958
|
+
reconnect: () => null
|
|
940
959
|
});
|
|
941
|
-
function
|
|
960
|
+
function k2(t) {
|
|
942
961
|
return sessionStorage.getItem(t) || "";
|
|
943
962
|
}
|
|
944
|
-
function
|
|
963
|
+
function U2(t, e) {
|
|
945
964
|
sessionStorage.setItem(t, e);
|
|
946
965
|
}
|
|
947
|
-
const
|
|
948
|
-
const [e, s] =
|
|
949
|
-
async (
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
966
|
+
const F2 = ({ children: t }) => {
|
|
967
|
+
const [e, s] = H(), c = S2(), r = b2(), i = I2(), u = T2(), g = m2(), f = y2(), w = R2(), d = E2(), b = u1(null), [A, F] = H(), V = u1({}), z = r1(
|
|
968
|
+
async (y) => {
|
|
969
|
+
try {
|
|
970
|
+
const Z = await T1.get(`${y}/ui/joinroom?token=${e}`);
|
|
971
|
+
return Z.status === 200 && Z.data ? (C.dispatch(W.setRoomData(Z.data)), !0) : !1;
|
|
972
|
+
} catch (Z) {
|
|
973
|
+
return console.log(Z), d ? !0 : Z instanceof N3 && Z.response && Z.response.status === 498 ? (console.error("Invalid token. Unable to join room"), C.dispatch(q.setErrorMessage(`Token ${e} is invalid. Unable to join room`)), !1) : (console.error("Error getting room data", Z), Z instanceof Error ? C.dispatch(q.setErrorMessage(Z.message)) : C.dispatch(q.setErrorMessage("Error getting room data")), !1);
|
|
974
|
+
}
|
|
955
975
|
},
|
|
956
|
-
[e]
|
|
957
|
-
),
|
|
958
|
-
|
|
959
|
-
|
|
976
|
+
[e, d]
|
|
977
|
+
), o1 = r1(() => {
|
|
978
|
+
const y = `${g.gatewayAppPath}?uuid=${f}&roomKey=${r}`;
|
|
979
|
+
window.location.href = w ? `${y}&Code=${w}` : y;
|
|
980
|
+
}, [g.gatewayAppPath, r, f, w]), T = r1(
|
|
981
|
+
(y, Z) => {
|
|
982
|
+
b.current && c && b.current.send(JSON.stringify({ type: y, clientId: i, content: Z }));
|
|
960
983
|
},
|
|
961
984
|
[c, i]
|
|
962
|
-
),
|
|
963
|
-
|
|
964
|
-
},
|
|
965
|
-
(
|
|
966
|
-
|
|
985
|
+
), L = (y, Z) => {
|
|
986
|
+
T(y, { value: Z });
|
|
987
|
+
}, x1 = r1(
|
|
988
|
+
(y, Z, h1) => {
|
|
989
|
+
V.current[y] || (V.current[y] = {}), V.current[y][Z] = h1, console.log("event handler added", y, Z);
|
|
967
990
|
},
|
|
968
991
|
[]
|
|
969
|
-
),
|
|
970
|
-
|
|
992
|
+
), M1 = r1((y, Z) => {
|
|
993
|
+
V.current[y] && (delete V.current[y][Z], console.log("event handler removed", y, Z));
|
|
971
994
|
}, []);
|
|
972
|
-
return
|
|
973
|
-
let
|
|
974
|
-
|
|
975
|
-
}, []),
|
|
976
|
-
async function
|
|
977
|
-
if (!(!
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
995
|
+
return t1(() => {
|
|
996
|
+
let Z = new URLSearchParams(window.location.search).get("token");
|
|
997
|
+
Z ? (console.log("saving token: ", Z), U2(a3.uuid, Z)) : (Z = k2(a3.uuid), console.log("loading token: ", Z)), s(Z), u();
|
|
998
|
+
}, []), t1(() => {
|
|
999
|
+
async function y() {
|
|
1000
|
+
if (console.log("effect is running"), !(!g.apiPath || A || !e || !await z(g.apiPath)) && !b.current) {
|
|
1001
|
+
const m1 = `${g.apiPath.replace("http", "ws")}/ui/join/${e}`, K = new WebSocket(m1);
|
|
1002
|
+
b.current = K, K.onopen = (B) => {
|
|
1003
|
+
console.log("connected", B.type, B.target), C.dispatch(W.setWebsocketIsConnected(!0));
|
|
1004
|
+
}, K.onerror = (B) => {
|
|
1005
|
+
console.log(B);
|
|
1006
|
+
}, K.onclose = (B) => {
|
|
1007
|
+
if (console.log("disconnected: ", B.reason, B.code), B.code === 4e3) {
|
|
1008
|
+
console.log("user code changed"), C.dispatch(W.setUserCode({ userCode: "", qrUrl: "" })), C.dispatch(q.setErrorMessage("User code changed. Click reconnect to enter the new code")), C.dispatch(q.setShowReconnect(!0)), C.dispatch(W.setWebsocketIsConnected(!1)), C.dispatch(N.clearDevices()), C.dispatch(e1.clearRooms());
|
|
1009
|
+
return;
|
|
1010
|
+
}
|
|
1011
|
+
if (B.code === 4001 && !d) {
|
|
1012
|
+
console.log("processor disconnected"), C.dispatch(q.setErrorMessage("Processor has disconnected. Click Reconnect")), C.dispatch(q.setShowReconnect(!0)), C.dispatch(W.setWebsocketIsConnected(!1)), C.dispatch(N.clearDevices()), C.dispatch(e1.clearRooms());
|
|
1013
|
+
return;
|
|
1014
|
+
}
|
|
1015
|
+
if (B.code === 4002) {
|
|
1016
|
+
console.log("room combination changed"), C.dispatch(q.setErrorMessage("Room combination changed. Click Reconnect to re-join the room")), C.dispatch(q.setShowReconnect(!0)), C.dispatch(W.setWebsocketIsConnected(!1)), C.dispatch(N.clearDevices()), C.dispatch(e1.clearRooms());
|
|
1017
|
+
return;
|
|
1018
|
+
}
|
|
1019
|
+
if (b.current)
|
|
1020
|
+
console.log("WebSocket closed by server.");
|
|
1021
|
+
else {
|
|
1022
|
+
console.log("WebSocket closed by client.");
|
|
1023
|
+
return;
|
|
1024
|
+
}
|
|
1025
|
+
A || (C.dispatch(W.setWebsocketIsConnected(!1)), C.dispatch(N.clearDevices()), C.dispatch(e1.clearRooms()), F(!0), setTimeout(() => F(void 0), 5e3));
|
|
1026
|
+
}, K.onmessage = (B) => {
|
|
1027
|
+
try {
|
|
1028
|
+
const R = JSON.parse(B.data);
|
|
1029
|
+
if (console.log(R), R.type === "close") {
|
|
1030
|
+
K.close(4001, R.content);
|
|
989
1031
|
return;
|
|
990
1032
|
}
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1033
|
+
if (R.type.startsWith("/system/"))
|
|
1034
|
+
switch (R.type) {
|
|
1035
|
+
case "/system/touchpanelKey":
|
|
1036
|
+
C.dispatch(
|
|
1037
|
+
W.setTouchpanelKey(
|
|
1038
|
+
R.content
|
|
1039
|
+
)
|
|
1040
|
+
);
|
|
1041
|
+
break;
|
|
1042
|
+
case "/system/roomKey":
|
|
1043
|
+
C.dispatch(
|
|
1044
|
+
W.setCurrentRoomKey(
|
|
1045
|
+
R.content
|
|
1046
|
+
)
|
|
1047
|
+
);
|
|
1048
|
+
break;
|
|
1049
|
+
case "/system/userCodeChanged":
|
|
1050
|
+
C.dispatch(
|
|
1051
|
+
W.setUserCode(
|
|
1052
|
+
R.content
|
|
1053
|
+
)
|
|
1054
|
+
);
|
|
1055
|
+
break;
|
|
1056
|
+
case "/system/roomCombinationChanged":
|
|
1057
|
+
window.location.reload();
|
|
1058
|
+
break;
|
|
1059
|
+
default:
|
|
1060
|
+
console.log("unhandled system message", R);
|
|
1061
|
+
break;
|
|
1062
|
+
}
|
|
1063
|
+
else if (R.type.startsWith("/event/")) {
|
|
1064
|
+
console.log("event message received", R);
|
|
1065
|
+
const J = V.current[R.type];
|
|
1066
|
+
J || console.log("no handlers found for event type", R.type), J && Object.values(J).forEach((k) => {
|
|
1067
|
+
try {
|
|
1068
|
+
k(R);
|
|
1069
|
+
} catch (G) {
|
|
1070
|
+
console.error(G);
|
|
1017
1071
|
}
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
} catch (l1) {
|
|
1025
|
-
console.error(l1);
|
|
1026
|
-
}
|
|
1027
|
-
});
|
|
1028
|
-
} else
|
|
1029
|
-
E.type.startsWith("/room/") ? O.dispatch(y1.setRoomState(E)) : E.type.startsWith("/device/") && O.dispatch(I1.setDeviceState(E));
|
|
1030
|
-
} catch (E) {
|
|
1031
|
-
console.log(E);
|
|
1032
|
-
}
|
|
1033
|
-
};
|
|
1034
|
-
}
|
|
1035
|
-
return () => {
|
|
1036
|
-
h.current && h.current.close(), h.current = null;
|
|
1072
|
+
});
|
|
1073
|
+
} else
|
|
1074
|
+
R.type.startsWith("/room/") ? C.dispatch(e1.setRoomState(R)) : R.type.startsWith("/device/") && C.dispatch(N.setDeviceState(R));
|
|
1075
|
+
} catch (R) {
|
|
1076
|
+
console.log(R);
|
|
1077
|
+
}
|
|
1037
1078
|
};
|
|
1038
1079
|
}
|
|
1039
1080
|
}
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
}, [
|
|
1044
|
-
|
|
1081
|
+
return y(), () => {
|
|
1082
|
+
b.current && b.current.close(), b.current = null;
|
|
1083
|
+
};
|
|
1084
|
+
}, [g.apiPath, z, e, A, d]), t1(() => {
|
|
1085
|
+
!r || !c || (console.log("clientId: ", i), i && (console.log("requesting status from room: ", r), T(`/room/${r}/status`, null)));
|
|
1086
|
+
}, [r, i, c, T]), /* @__PURE__ */ o.jsx(
|
|
1087
|
+
m3.Provider,
|
|
1045
1088
|
{
|
|
1046
1089
|
value: {
|
|
1047
|
-
sendMessage:
|
|
1048
|
-
sendSimpleMessage:
|
|
1049
|
-
addEventHandler:
|
|
1050
|
-
removeEventHandler:
|
|
1090
|
+
sendMessage: T,
|
|
1091
|
+
sendSimpleMessage: L,
|
|
1092
|
+
addEventHandler: x1,
|
|
1093
|
+
removeEventHandler: M1,
|
|
1094
|
+
reconnect: o1
|
|
1051
1095
|
},
|
|
1052
|
-
children: c ? t : /* @__PURE__ */
|
|
1096
|
+
children: c ? t : /* @__PURE__ */ o.jsx(O2, {})
|
|
1053
1097
|
}
|
|
1054
1098
|
);
|
|
1055
|
-
},
|
|
1099
|
+
}, x6 = ({ children: t }) => /* @__PURE__ */ o.jsx(n2, { store: C, children: /* @__PURE__ */ o.jsx(F2, { children: t }) });
|
|
1056
1100
|
function I() {
|
|
1057
|
-
return
|
|
1101
|
+
return r2(m3);
|
|
1058
1102
|
}
|
|
1059
|
-
function
|
|
1103
|
+
function W2({
|
|
1060
1104
|
onPress: t,
|
|
1061
1105
|
onRelease: e,
|
|
1062
1106
|
onHold: s,
|
|
1063
1107
|
holdTimeMs: c = 500
|
|
1064
1108
|
}) {
|
|
1065
|
-
const
|
|
1109
|
+
const r = u1(null), i = u1(!1);
|
|
1066
1110
|
function u() {
|
|
1067
|
-
i.current = !0, t == null || t(),
|
|
1068
|
-
s == null || s(),
|
|
1111
|
+
i.current = !0, t == null || t(), r.current = setTimeout(() => {
|
|
1112
|
+
s == null || s(), r.current = null;
|
|
1069
1113
|
}, c);
|
|
1070
1114
|
}
|
|
1071
|
-
function
|
|
1072
|
-
i.current = !1, e == null || e(),
|
|
1115
|
+
function g() {
|
|
1116
|
+
i.current = !1, e == null || e(), r.current && (clearTimeout(r.current), r.current = null);
|
|
1073
1117
|
}
|
|
1074
|
-
function
|
|
1075
|
-
i.current &&
|
|
1118
|
+
function f() {
|
|
1119
|
+
i.current && g();
|
|
1076
1120
|
}
|
|
1077
1121
|
return {
|
|
1078
1122
|
onPointerDown: u,
|
|
1079
|
-
onPointerUp:
|
|
1080
|
-
onPointerLeave:
|
|
1123
|
+
onPointerUp: g,
|
|
1124
|
+
onPointerLeave: f
|
|
1081
1125
|
};
|
|
1082
1126
|
}
|
|
1083
1127
|
function v(t, e) {
|
|
1084
|
-
const { sendMessage: c } = I(),
|
|
1128
|
+
const { sendMessage: c } = I(), r = u1(null);
|
|
1085
1129
|
function i() {
|
|
1086
|
-
c(`${t}/${e}`, { value: "pressed" }),
|
|
1130
|
+
c(`${t}/${e}`, { value: "pressed" }), r.current || (r.current = setInterval(() => {
|
|
1087
1131
|
c(`${t}/${e}`, { value: "held" });
|
|
1088
1132
|
}, 250));
|
|
1089
1133
|
}
|
|
1090
1134
|
function u() {
|
|
1091
|
-
|
|
1135
|
+
r.current && (clearInterval(r.current), r.current = null), c(`${t}/${e}`, { value: "released" });
|
|
1092
1136
|
}
|
|
1093
|
-
return
|
|
1137
|
+
return W2({ onPress: i, onRelease: u });
|
|
1094
1138
|
}
|
|
1095
|
-
function
|
|
1096
|
-
const { sendMessage: s, sendSimpleMessage: c } = I(),
|
|
1139
|
+
function Z3(t, e) {
|
|
1140
|
+
const { sendMessage: s, sendSimpleMessage: c } = I(), r = v(`${t}`, "volumeUp"), i = v(`${t}`, "volumeDown");
|
|
1097
1141
|
return e ? {
|
|
1098
1142
|
volumeState: e,
|
|
1099
|
-
volumeUp:
|
|
1143
|
+
volumeUp: r,
|
|
1100
1144
|
volumeDown: i,
|
|
1101
|
-
setLevel: (
|
|
1145
|
+
setLevel: (d) => c(`${t}/level`, d),
|
|
1102
1146
|
muteToggle: () => s(`${t}/muteToggle`, null),
|
|
1103
1147
|
muteOn: () => s(`${t}/muteOn`, null),
|
|
1104
1148
|
muteOff: () => s(`${t}/muteOff`, null)
|
|
1105
1149
|
} : void 0;
|
|
1106
1150
|
}
|
|
1107
|
-
function
|
|
1108
|
-
const { sendMessage: s, sendSimpleMessage: c } = I(),
|
|
1151
|
+
function M6(t, e) {
|
|
1152
|
+
const { sendMessage: s, sendSimpleMessage: c } = I(), r = v(`${t}`, "volumeUp"), i = v(`${t}`, "volumeDown");
|
|
1109
1153
|
return e ? {
|
|
1110
1154
|
volumeState: e,
|
|
1111
|
-
volumeUp:
|
|
1155
|
+
volumeUp: r,
|
|
1112
1156
|
volumeDown: i,
|
|
1113
|
-
setLevel: (
|
|
1157
|
+
setLevel: (d) => c(`${t}/level`, d),
|
|
1114
1158
|
muteToggle: () => s(`${t}/muteToggle`, null),
|
|
1115
1159
|
muteOn: () => s(`${t}/muteOn`, null),
|
|
1116
1160
|
muteOff: () => s(`${t}/muteOff`, null)
|
|
1117
1161
|
} : void 0;
|
|
1118
1162
|
}
|
|
1119
|
-
function
|
|
1120
|
-
const e =
|
|
1121
|
-
return
|
|
1163
|
+
function H2(t) {
|
|
1164
|
+
const e = $(t), s = `/device/${t}`;
|
|
1165
|
+
return Z3(s, e == null ? void 0 : e.volume);
|
|
1122
1166
|
}
|
|
1123
|
-
function
|
|
1167
|
+
function j3(t) {
|
|
1124
1168
|
const { sendMessage: e } = I();
|
|
1125
1169
|
return { powerOn: () => {
|
|
1126
1170
|
e(`/device/${t}/powerOn`, null);
|
|
@@ -1130,159 +1174,159 @@ function x3(t) {
|
|
|
1130
1174
|
e(`/device/${t}/powerToggle`, null);
|
|
1131
1175
|
} };
|
|
1132
1176
|
}
|
|
1133
|
-
function
|
|
1134
|
-
const { sendMessage: e } = I(), s =
|
|
1135
|
-
return console.log("deviceState", s), s ? { itemsState: s, selectItem: (
|
|
1136
|
-
e(`/device/${t}/${
|
|
1177
|
+
function A1(t) {
|
|
1178
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1179
|
+
return console.log("deviceState", s), s ? { itemsState: s, selectItem: (r) => {
|
|
1180
|
+
e(`/device/${t}/${r}`, null);
|
|
1137
1181
|
} } : void 0;
|
|
1138
1182
|
}
|
|
1139
|
-
function
|
|
1140
|
-
const { sendMessage: e } = I(), s =
|
|
1183
|
+
function K2(t) {
|
|
1184
|
+
const { sendMessage: e } = I(), s = $(t), c = () => {
|
|
1141
1185
|
e(`/device/${t}/setDefaultChannelLevels`, null);
|
|
1142
|
-
},
|
|
1186
|
+
}, r = () => {
|
|
1143
1187
|
if ((s == null ? void 0 : s.levelControls) === void 0)
|
|
1144
1188
|
return;
|
|
1145
|
-
Object.keys(s == null ? void 0 : s.levelControls).forEach((
|
|
1146
|
-
e(`/device/${t}/${
|
|
1189
|
+
Object.keys(s == null ? void 0 : s.levelControls).forEach((g) => {
|
|
1190
|
+
e(`/device/${t}/${g}/fullStatus`, null);
|
|
1147
1191
|
});
|
|
1148
1192
|
};
|
|
1149
|
-
return s ? { levelControls: s.levelControls, setDefaultChannelLevels: c, getFullStatus:
|
|
1193
|
+
return s ? { levelControls: s.levelControls, setDefaultChannelLevels: c, getFullStatus: r } : void 0;
|
|
1150
1194
|
}
|
|
1151
|
-
function
|
|
1152
|
-
const e =
|
|
1195
|
+
function m6(t) {
|
|
1196
|
+
const e = $(t), s = j3(t), c = A1(t), r = A1(t), i = H2(t), u = K2(t);
|
|
1153
1197
|
if (e)
|
|
1154
1198
|
return {
|
|
1155
1199
|
avrState: e,
|
|
1156
1200
|
powerControl: s,
|
|
1157
1201
|
inputControl: c,
|
|
1158
|
-
surroundSoundModes:
|
|
1202
|
+
surroundSoundModes: r,
|
|
1159
1203
|
surroundChannels: u,
|
|
1160
1204
|
mainVolumeControl: i
|
|
1161
1205
|
};
|
|
1162
1206
|
}
|
|
1163
|
-
function
|
|
1164
|
-
const e =
|
|
1207
|
+
function Z6(t) {
|
|
1208
|
+
const e = $(t);
|
|
1165
1209
|
if (e)
|
|
1166
1210
|
return { endpointState: e };
|
|
1167
1211
|
}
|
|
1168
|
-
function
|
|
1169
|
-
const e = `/device/${t}`, s = v(e, "chanUp"), c = v(e, "chanDown"),
|
|
1170
|
-
return { channelUp: s, channelDown: c, lastChannel:
|
|
1212
|
+
function j6(t) {
|
|
1213
|
+
const e = `/device/${t}`, s = v(e, "chanUp"), c = v(e, "chanDown"), r = v(e, "lastChan"), i = v(e, "guide"), u = v(e, "info"), g = v(e, "exit");
|
|
1214
|
+
return { channelUp: s, channelDown: c, lastChannel: r, guide: i, info: u, exit: g };
|
|
1171
1215
|
}
|
|
1172
|
-
function
|
|
1173
|
-
const e = `/device/${t}`, s = v(e, "red"), c = v(e, "green"),
|
|
1174
|
-
return { red: s, green: c, yellow:
|
|
1216
|
+
function C6(t) {
|
|
1217
|
+
const e = `/device/${t}`, s = v(e, "red"), c = v(e, "green"), r = v(e, "yellow"), i = v(e, "blue");
|
|
1218
|
+
return { red: s, green: c, yellow: r, blue: i };
|
|
1175
1219
|
}
|
|
1176
|
-
function
|
|
1177
|
-
const e =
|
|
1220
|
+
function S6(t) {
|
|
1221
|
+
const e = $(t);
|
|
1178
1222
|
if (e)
|
|
1179
1223
|
return {
|
|
1180
1224
|
communicationMonitorState: e
|
|
1181
1225
|
};
|
|
1182
1226
|
}
|
|
1183
|
-
function
|
|
1184
|
-
const e = `/device/${t}`, s = v(e, "up"), c = v(e, "down"),
|
|
1185
|
-
return { up: s, down: c, left:
|
|
1227
|
+
function b6(t) {
|
|
1228
|
+
const e = `/device/${t}`, s = v(e, "up"), c = v(e, "down"), r = v(e, "left"), i = v(e, "right"), u = v(e, "select"), g = v(e, "menu"), f = v(e, "exit");
|
|
1229
|
+
return { up: s, down: c, left: r, right: i, select: u, menu: g, exit: f };
|
|
1186
1230
|
}
|
|
1187
|
-
function
|
|
1188
|
-
const e =
|
|
1231
|
+
function I6(t) {
|
|
1232
|
+
const e = $(t);
|
|
1189
1233
|
if (e)
|
|
1190
1234
|
return e.deviceInfo || void 0;
|
|
1191
1235
|
}
|
|
1192
|
-
function
|
|
1236
|
+
function y6(t) {
|
|
1193
1237
|
const e = `/device/${t}`, s = v(e, "dvrList"), c = v(e, "record");
|
|
1194
1238
|
return { dvrList: s, record: c };
|
|
1195
1239
|
}
|
|
1196
|
-
const
|
|
1197
|
-
const [e, s] =
|
|
1198
|
-
return
|
|
1240
|
+
const R6 = ({ className: t }) => {
|
|
1241
|
+
const [e, s] = H();
|
|
1242
|
+
return t1(() => {
|
|
1199
1243
|
setInterval(() => {
|
|
1200
1244
|
const c = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
|
|
1201
1245
|
s(c);
|
|
1202
1246
|
}, 1e3);
|
|
1203
|
-
}, []), /* @__PURE__ */
|
|
1247
|
+
}, []), /* @__PURE__ */ o.jsxs("div", { className: t, children: [
|
|
1204
1248
|
e,
|
|
1205
1249
|
" new change"
|
|
1206
1250
|
] });
|
|
1207
1251
|
};
|
|
1208
|
-
function
|
|
1209
|
-
const { sendMessage: e } = I(), s =
|
|
1252
|
+
function E6(t) {
|
|
1253
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1210
1254
|
return s ? { roomCombinerState: s, setAutoMode: () => {
|
|
1211
1255
|
e(`/device/${t}/setAutoMode`, null);
|
|
1212
1256
|
}, setManualMode: () => {
|
|
1213
1257
|
e(`/device/${t}/setManualMode`, null);
|
|
1214
1258
|
}, toggleMode: () => {
|
|
1215
1259
|
e(`/device/${t}/toggleMode`, null);
|
|
1216
|
-
}, togglePartitionState: (
|
|
1217
|
-
e(`/device/${t}/togglePartitionState`,
|
|
1218
|
-
}, setRoomCombinationScenario: (
|
|
1219
|
-
e(`/device/${t}/setRoomCombinationScenario`,
|
|
1260
|
+
}, togglePartitionState: (f) => {
|
|
1261
|
+
e(`/device/${t}/togglePartitionState`, f);
|
|
1262
|
+
}, setRoomCombinationScenario: (f) => {
|
|
1263
|
+
e(`/device/${t}/setRoomCombinationScenario`, f);
|
|
1220
1264
|
} } : void 0;
|
|
1221
1265
|
}
|
|
1222
|
-
function
|
|
1223
|
-
const { sendMessage: e, sendSimpleMessage: s } = I(), c =
|
|
1266
|
+
function _6(t) {
|
|
1267
|
+
const { sendMessage: e, sendSimpleMessage: s } = I(), c = $(t), r = C2(t), i = c || r;
|
|
1224
1268
|
return i ? {
|
|
1225
1269
|
levelState: i,
|
|
1226
|
-
setLevel: (
|
|
1227
|
-
muteToggle: (
|
|
1228
|
-
muteOn: (
|
|
1229
|
-
muteOff: (
|
|
1270
|
+
setLevel: (d, b) => s(`${d}/level`, b),
|
|
1271
|
+
muteToggle: (d) => e(`${d}/muteToggle`, null),
|
|
1272
|
+
muteOn: (d) => e(`${d}/muteOn`, null),
|
|
1273
|
+
muteOff: (d) => e(`${d}/muteOff`, null)
|
|
1230
1274
|
} : void 0;
|
|
1231
1275
|
}
|
|
1232
|
-
function
|
|
1233
|
-
const { sendMessage: e } = I(), s =
|
|
1234
|
-
return s ? { lightingState: s, selectScene: (
|
|
1235
|
-
e(`/device/${t}/selectScene`,
|
|
1276
|
+
function L6(t) {
|
|
1277
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1278
|
+
return s ? { lightingState: s, selectScene: (r) => {
|
|
1279
|
+
e(`/device/${t}/selectScene`, r);
|
|
1236
1280
|
} } : void 0;
|
|
1237
1281
|
}
|
|
1238
|
-
function
|
|
1239
|
-
const { sendMessage: e } = I(), s =
|
|
1240
|
-
return s ? { matrixRoutingState: s, setRoute: (
|
|
1241
|
-
e(`/device/${t}/route`,
|
|
1282
|
+
function $6(t) {
|
|
1283
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1284
|
+
return s ? { matrixRoutingState: s, setRoute: (r) => {
|
|
1285
|
+
e(`/device/${t}/route`, r);
|
|
1242
1286
|
} } : void 0;
|
|
1243
1287
|
}
|
|
1244
|
-
function
|
|
1288
|
+
function T6(t) {
|
|
1245
1289
|
const { sendMessage: e } = I();
|
|
1246
1290
|
return { closeApp: () => {
|
|
1247
1291
|
e(`/device/${t}/closeWebViewController`, null);
|
|
1248
1292
|
} };
|
|
1249
1293
|
}
|
|
1250
|
-
function
|
|
1251
|
-
const e = `/device/${t}`, s = v(e, "num0"), c = v(e, "num1"),
|
|
1252
|
-
return { digit0: s, digit1: c, digit2:
|
|
1294
|
+
function D6(t) {
|
|
1295
|
+
const e = `/device/${t}`, s = v(e, "num0"), c = v(e, "num1"), r = v(e, "num2"), i = v(e, "num3"), u = v(e, "num4"), g = v(e, "num5"), f = v(e, "num6"), w = v(e, "num7"), d = v(e, "num8"), b = v(e, "num9"), A = v(e, "numDash"), F = v(e, "numEnter");
|
|
1296
|
+
return { digit0: s, digit1: c, digit2: r, digit3: i, digit4: u, digit5: g, digit6: f, digit7: w, digit8: d, digit9: b, keypadAccessoryButton1: A, keypadAccessoryButton2: F };
|
|
1253
1297
|
}
|
|
1254
|
-
function
|
|
1255
|
-
const { sendMessage: e } = I(), s =
|
|
1298
|
+
function A6(t) {
|
|
1299
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1256
1300
|
return s ? { projectorScreenLiftControlState: s, raise: () => {
|
|
1257
1301
|
e(`/device/${t}/raise`, null);
|
|
1258
1302
|
}, lower: () => {
|
|
1259
1303
|
e(`/device/${t}/lower`, null);
|
|
1260
1304
|
} } : void 0;
|
|
1261
1305
|
}
|
|
1262
|
-
function
|
|
1263
|
-
const { sendMessage: e } = I(), s =
|
|
1264
|
-
return s ? { roomEventScheduleState: s, save: (
|
|
1265
|
-
e(`/room/${t}/saveScheduledEvents`,
|
|
1306
|
+
function P6(t) {
|
|
1307
|
+
const { sendMessage: e } = I(), s = P1(t);
|
|
1308
|
+
return s ? { roomEventScheduleState: s, save: (r) => {
|
|
1309
|
+
e(`/room/${t}/saveScheduledEvents`, r);
|
|
1266
1310
|
} } : void 0;
|
|
1267
1311
|
}
|
|
1268
|
-
function
|
|
1312
|
+
function B6(t) {
|
|
1269
1313
|
const { sendMessage: e } = I();
|
|
1270
1314
|
return { runDirectRoute: (c) => {
|
|
1271
1315
|
e(`/room/${t}/directRoute`, c);
|
|
1272
1316
|
} };
|
|
1273
1317
|
}
|
|
1274
|
-
function
|
|
1318
|
+
function O6(t) {
|
|
1275
1319
|
const { sendMessage: e } = I();
|
|
1276
|
-
return { routingState:
|
|
1277
|
-
e(`/room/${t}/source`,
|
|
1320
|
+
return { routingState: $(t), runRoute: (r) => {
|
|
1321
|
+
e(`/room/${t}/source`, r);
|
|
1278
1322
|
} };
|
|
1279
1323
|
}
|
|
1280
|
-
function
|
|
1324
|
+
function V6(t) {
|
|
1281
1325
|
const e = `/device/${t}`, s = v(e, "chanUp"), c = v(e, "chanDown");
|
|
1282
1326
|
return { dvrList: s, replay: c };
|
|
1283
1327
|
}
|
|
1284
|
-
function
|
|
1285
|
-
const { sendMessage: e } = I(), s =
|
|
1328
|
+
function k6(t) {
|
|
1329
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1286
1330
|
return s ? { shadeState: s, shadeUp: () => {
|
|
1287
1331
|
e(`/device/${t}/shadeUp`, null);
|
|
1288
1332
|
}, shadeDown: () => {
|
|
@@ -1291,10 +1335,10 @@ function y6(t) {
|
|
|
1291
1335
|
e(`/device/${t}/stopOrPreset`, null);
|
|
1292
1336
|
} } : void 0;
|
|
1293
1337
|
}
|
|
1294
|
-
function
|
|
1295
|
-
const { sendMessage: e } = I(), s =
|
|
1296
|
-
return s ? { shutdownPromptTimerState: s, setShutdownPromptSeconds: (
|
|
1297
|
-
e(`/room/${t}/setShutdownPromptSeconds`,
|
|
1338
|
+
function U6(t) {
|
|
1339
|
+
const { sendMessage: e } = I(), s = P1(t);
|
|
1340
|
+
return s ? { shutdownPromptTimerState: s, setShutdownPromptSeconds: (g) => {
|
|
1341
|
+
e(`/room/${t}/setShutdownPromptSeconds`, g);
|
|
1298
1342
|
}, shutdownStart: () => {
|
|
1299
1343
|
e(`/room/${t}/shutdownStart`, null);
|
|
1300
1344
|
}, shutdownEnd: () => {
|
|
@@ -1303,28 +1347,28 @@ function R6(t) {
|
|
|
1303
1347
|
e(`/room/${t}/shutdownCancel`, null);
|
|
1304
1348
|
} } : void 0;
|
|
1305
1349
|
}
|
|
1306
|
-
function
|
|
1307
|
-
const { sendMessage: e } = I(), s =
|
|
1350
|
+
function F6(t) {
|
|
1351
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1308
1352
|
return s ? { switchedOutputState: s, on: () => {
|
|
1309
1353
|
e(`/device/${t}/on`, null);
|
|
1310
1354
|
}, off: () => {
|
|
1311
1355
|
e(`/device/${t}/off`, null);
|
|
1312
1356
|
} } : void 0;
|
|
1313
1357
|
}
|
|
1314
|
-
function
|
|
1315
|
-
const { sendMessage: e } = I(), s =
|
|
1358
|
+
function W6(t) {
|
|
1359
|
+
const { sendMessage: e } = I(), s = P1(t);
|
|
1316
1360
|
return s ? { techPasswordState: s, validatePassword: (i) => {
|
|
1317
1361
|
e(`/room/${t}/validateTechPassword`, { password: i });
|
|
1318
1362
|
}, setPassword: (i, u) => {
|
|
1319
1363
|
e(`/room/${t}/setTechPassword`, { oldPassword: i, newPassword: u });
|
|
1320
1364
|
} } : void 0;
|
|
1321
1365
|
}
|
|
1322
|
-
function
|
|
1323
|
-
const e = `/device/${t}`, s = v(e, "play"), c = v(e, "pause"),
|
|
1324
|
-
return { play: s, pause: c, stop:
|
|
1366
|
+
function H6(t) {
|
|
1367
|
+
const e = `/device/${t}`, s = v(e, "play"), c = v(e, "pause"), r = v(e, "stop"), i = v(e, "prevTrack"), u = v(e, "nextTrack"), g = v(e, "rewind"), f = v(e, "ffwd"), w = v(e, "record");
|
|
1368
|
+
return { play: s, pause: c, stop: r, prevTrack: i, nextTrack: u, rewind: g, fastForward: f, record: w };
|
|
1325
1369
|
}
|
|
1326
|
-
function
|
|
1327
|
-
const e =
|
|
1370
|
+
function K6(t) {
|
|
1371
|
+
const e = $(t), { sendMessage: s } = I();
|
|
1328
1372
|
return e ? {
|
|
1329
1373
|
touchpanelState: e,
|
|
1330
1374
|
appControl: { hideApp: () => {
|
|
@@ -1339,28 +1383,37 @@ function $6(t) {
|
|
|
1339
1383
|
} }
|
|
1340
1384
|
} : void 0;
|
|
1341
1385
|
}
|
|
1342
|
-
function
|
|
1343
|
-
const e =
|
|
1386
|
+
function G6(t) {
|
|
1387
|
+
const e = $(t), s = j3(t), c = A1(t);
|
|
1344
1388
|
if (!e)
|
|
1345
1389
|
return;
|
|
1346
|
-
const
|
|
1390
|
+
const r = (e.powerState || e.isWarming) && !e.isCooling, i = (!e.powerState || e.isCooling) && !e.isWarming;
|
|
1347
1391
|
return {
|
|
1348
1392
|
displayState: e,
|
|
1349
1393
|
powerControl: s,
|
|
1350
1394
|
inputControl: c,
|
|
1351
|
-
powerFb: { powerOnFb:
|
|
1395
|
+
powerFb: { powerOnFb: r, powerOffFb: i }
|
|
1352
1396
|
};
|
|
1353
1397
|
}
|
|
1354
|
-
function
|
|
1398
|
+
function q6(t) {
|
|
1355
1399
|
const { sendMessage: e } = I();
|
|
1356
1400
|
return { runDefaultPresentRoute: () => {
|
|
1357
1401
|
e(`/room/${t}/defaultsource`, {});
|
|
1358
1402
|
} };
|
|
1359
1403
|
}
|
|
1360
|
-
|
|
1404
|
+
function Y6(t) {
|
|
1405
|
+
const { sendMessage: e } = I(), s = $(t), c = (r) => {
|
|
1406
|
+
e(`/device/${t}/saveTheme`, { value: r });
|
|
1407
|
+
};
|
|
1408
|
+
return {
|
|
1409
|
+
currentTheme: s == null ? void 0 : s.theme,
|
|
1410
|
+
saveTheme: c
|
|
1411
|
+
};
|
|
1412
|
+
}
|
|
1413
|
+
const z6 = ({ config: t }) => {
|
|
1361
1414
|
const { sendMessage: e } = I();
|
|
1362
|
-
|
|
1363
|
-
var c,
|
|
1415
|
+
t1(() => {
|
|
1416
|
+
var c, r;
|
|
1364
1417
|
if (!t)
|
|
1365
1418
|
return;
|
|
1366
1419
|
const s = [];
|
|
@@ -1374,7 +1427,7 @@ const B6 = ({ config: t }) => {
|
|
|
1374
1427
|
s.push(i);
|
|
1375
1428
|
}), t.environmentalDevices.forEach((i) => {
|
|
1376
1429
|
s.push(i.deviceKey);
|
|
1377
|
-
}), (
|
|
1430
|
+
}), (r = t.accessoryDeviceKeys) == null || r.forEach((i) => {
|
|
1378
1431
|
s.push(i);
|
|
1379
1432
|
}), t.audioCodecKey && s.push(t.audioCodecKey), t.videoCodecKey && s.push(t.videoCodecKey), t.matrixRoutingKey && s.push(t.matrixRoutingKey), t.roomCombinerKey && s.push(t.roomCombinerKey), t.endpointKeys && t.endpointKeys.forEach((i) => {
|
|
1380
1433
|
s.push(i);
|
|
@@ -1386,101 +1439,130 @@ const B6 = ({ config: t }) => {
|
|
|
1386
1439
|
});
|
|
1387
1440
|
}, [t, e]);
|
|
1388
1441
|
};
|
|
1389
|
-
function
|
|
1390
|
-
const s =
|
|
1391
|
-
return
|
|
1442
|
+
function J6(t, e) {
|
|
1443
|
+
const s = j2(t, e), c = `/room/${t}/volumes/${e}`;
|
|
1444
|
+
return Z3(c, s);
|
|
1392
1445
|
}
|
|
1393
|
-
function
|
|
1394
|
-
const [t, e] =
|
|
1395
|
-
function
|
|
1446
|
+
function X6() {
|
|
1447
|
+
const [t, e] = H(), [s, c] = H();
|
|
1448
|
+
function r() {
|
|
1396
1449
|
e((/* @__PURE__ */ new Date()).toLocaleDateString("en-US", { dateStyle: "long" }));
|
|
1397
1450
|
const i = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
|
|
1398
1451
|
c(i);
|
|
1399
1452
|
}
|
|
1400
|
-
return
|
|
1401
|
-
|
|
1453
|
+
return t1(() => {
|
|
1454
|
+
r();
|
|
1402
1455
|
const i = setInterval(() => {
|
|
1403
|
-
|
|
1456
|
+
r();
|
|
1404
1457
|
}, 1e3);
|
|
1405
1458
|
return () => clearInterval(i);
|
|
1406
1459
|
}, []), { date: t, time: s };
|
|
1407
1460
|
}
|
|
1408
|
-
|
|
1409
|
-
const
|
|
1410
|
-
return
|
|
1411
|
-
|
|
1412
|
-
|
|
1461
|
+
function Q6(t, e) {
|
|
1462
|
+
const [s, c] = H(!1), [r, i] = H(!1);
|
|
1463
|
+
return v3(() => {
|
|
1464
|
+
const { current: u } = t, g = () => {
|
|
1465
|
+
const f = u && u.scrollHeight > u.clientHeight, w = u && u.scrollWidth > u.clientWidth;
|
|
1466
|
+
i(f ?? !1), c(w ?? !1), e && e(f ?? !1, w ?? !1);
|
|
1467
|
+
};
|
|
1468
|
+
u && g();
|
|
1469
|
+
}, [t, e]), { overflowHorizontal: s, overflowVertical: r };
|
|
1470
|
+
}
|
|
1471
|
+
function N6(t) {
|
|
1472
|
+
var g, f;
|
|
1473
|
+
const [e, s] = H(((g = t == null ? void 0 : t.current) == null ? void 0 : g.scrollLeft) ?? 0), [c, r] = H(((f = t == null ? void 0 : t.current) == null ? void 0 : f.scrollTop) ?? 0), i = (w) => {
|
|
1474
|
+
const { current: d } = t;
|
|
1475
|
+
d && (console.log(d.scrollLeft), d.scrollLeft += w, console.log(d.scrollLeft));
|
|
1476
|
+
}, u = (w) => {
|
|
1477
|
+
const { current: d } = t;
|
|
1478
|
+
d && (console.log(d.scrollTop), d.scrollTop += w, console.log(d.scrollTop));
|
|
1479
|
+
};
|
|
1480
|
+
return v3(() => {
|
|
1481
|
+
const { current: w } = t, d = () => {
|
|
1482
|
+
s((w == null ? void 0 : w.scrollLeft) ?? 0), r((w == null ? void 0 : w.scrollTop) ?? 0);
|
|
1483
|
+
};
|
|
1484
|
+
w && d();
|
|
1485
|
+
}, [t]), { horizontalScrollPosition: e, verticalScrollPosition: c, scrollHorizontal: i, scrollVertical: u };
|
|
1486
|
+
}
|
|
1487
|
+
const ee = () => {
|
|
1488
|
+
const [t, e] = H(!1), s = l2(), c = i2();
|
|
1489
|
+
let r;
|
|
1490
|
+
return a2(c) ? r = c.statusText : c instanceof Error ? r = c.message : typeof c == "string" ? r = c : (console.error(c), r = "Unknown error"), /* @__PURE__ */ o.jsxs("div", { className: "d-flex flex-column align-items-center gap-5", children: [
|
|
1491
|
+
/* @__PURE__ */ o.jsx("div", { className: "m-2 p-2 bg-danger rounded d-flex align-items-center", children: /* @__PURE__ */ o.jsx("span", { className: "fs-5 text-white", children: "We are sorry. Something went wrong." }) }),
|
|
1492
|
+
/* @__PURE__ */ o.jsx("button", { className: "btn btn-primary p-2", onClick: () => s(-1), children: "Go Back" }),
|
|
1493
|
+
/* @__PURE__ */ o.jsx("button", { className: "btn btn-primary p-2", onClick: () => e(!t), children: t ? "Hide error message" : "Show error message" }),
|
|
1494
|
+
t && /* @__PURE__ */ o.jsx("p", { children: r })
|
|
1413
1495
|
] });
|
|
1414
|
-
},
|
|
1415
|
-
iconbtn:
|
|
1416
|
-
iconbtnvert:
|
|
1417
|
-
iconsm:
|
|
1418
|
-
},
|
|
1496
|
+
}, G2 = "_iconbtn_16qss_1", q2 = "_iconbtnvert_16qss_7", Y2 = "_iconsm_16qss_18", _1 = {
|
|
1497
|
+
iconbtn: G2,
|
|
1498
|
+
iconbtnvert: q2,
|
|
1499
|
+
iconsm: Y2
|
|
1500
|
+
}, z2 = ({
|
|
1419
1501
|
multiIcon: t,
|
|
1420
1502
|
otherContent: e = null,
|
|
1421
1503
|
vert: s = !1,
|
|
1422
1504
|
className: c,
|
|
1423
|
-
iconClassName:
|
|
1505
|
+
iconClassName: r = "",
|
|
1424
1506
|
otherContentClassName: i = "",
|
|
1425
1507
|
disabled: u,
|
|
1426
|
-
feedback:
|
|
1427
|
-
feedbackClassName:
|
|
1428
|
-
onPointerDown:
|
|
1429
|
-
onPointerUp:
|
|
1508
|
+
feedback: g,
|
|
1509
|
+
feedbackClassName: f,
|
|
1510
|
+
onPointerDown: w,
|
|
1511
|
+
onPointerUp: d,
|
|
1430
1512
|
onPointerLeave: b,
|
|
1431
1513
|
...A
|
|
1432
1514
|
}) => {
|
|
1433
|
-
const [
|
|
1434
|
-
return /* @__PURE__ */
|
|
1515
|
+
const [F, V] = H(!1), z = !u && g ? f : "", o1 = !u && (F || g);
|
|
1516
|
+
return /* @__PURE__ */ o.jsxs(
|
|
1435
1517
|
"button",
|
|
1436
1518
|
{
|
|
1437
1519
|
type: "button",
|
|
1438
|
-
className: `${
|
|
1520
|
+
className: `${_1.iconbtn} ${s ? _1.iconbtnvert : ""} ${c} ${z}`,
|
|
1439
1521
|
...A,
|
|
1440
1522
|
disabled: u,
|
|
1441
|
-
onPointerDown: (
|
|
1442
|
-
V(!0),
|
|
1523
|
+
onPointerDown: (T) => {
|
|
1524
|
+
V(!0), w == null || w(T);
|
|
1443
1525
|
},
|
|
1444
|
-
onPointerUp: (
|
|
1445
|
-
V(!1),
|
|
1526
|
+
onPointerUp: (T) => {
|
|
1527
|
+
V(!1), d == null || d(T);
|
|
1446
1528
|
},
|
|
1447
|
-
onPointerLeave: (
|
|
1448
|
-
V(!1), b == null || b(
|
|
1529
|
+
onPointerLeave: (T) => {
|
|
1530
|
+
V(!1), b == null || b(T);
|
|
1449
1531
|
},
|
|
1450
1532
|
children: [
|
|
1451
|
-
t && /* @__PURE__ */
|
|
1533
|
+
t && /* @__PURE__ */ o.jsx(
|
|
1452
1534
|
t,
|
|
1453
1535
|
{
|
|
1454
|
-
className: `${
|
|
1455
|
-
active:
|
|
1536
|
+
className: `${r || _1.iconsm}`,
|
|
1537
|
+
active: o1,
|
|
1456
1538
|
disabled: u
|
|
1457
1539
|
}
|
|
1458
1540
|
),
|
|
1459
|
-
/* @__PURE__ */
|
|
1541
|
+
/* @__PURE__ */ o.jsx("div", { className: i, children: e })
|
|
1460
1542
|
]
|
|
1461
1543
|
}
|
|
1462
1544
|
);
|
|
1463
|
-
},
|
|
1545
|
+
}, m = ({
|
|
1464
1546
|
ActiveImage: t,
|
|
1465
1547
|
DisabledImage: e,
|
|
1466
1548
|
EnabledImage: s,
|
|
1467
1549
|
active: c,
|
|
1468
|
-
disabled:
|
|
1469
|
-
}) =>
|
|
1550
|
+
disabled: r
|
|
1551
|
+
}) => r ? e : c ? t : s, J2 = ({
|
|
1470
1552
|
active: t,
|
|
1471
1553
|
className: e = "",
|
|
1472
1554
|
disabled: s
|
|
1473
|
-
}) => /* @__PURE__ */
|
|
1474
|
-
|
|
1555
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
1556
|
+
m,
|
|
1475
1557
|
{
|
|
1476
|
-
ActiveImage: /* @__PURE__ */
|
|
1558
|
+
ActiveImage: /* @__PURE__ */ o.jsx(
|
|
1477
1559
|
"svg",
|
|
1478
1560
|
{
|
|
1479
1561
|
className: e,
|
|
1480
1562
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1481
1563
|
viewBox: "0 0 164.61 164.61",
|
|
1482
1564
|
fill: "currentcolor",
|
|
1483
|
-
children: /* @__PURE__ */
|
|
1565
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx(
|
|
1484
1566
|
"path",
|
|
1485
1567
|
{
|
|
1486
1568
|
id: "icon-alert-active",
|
|
@@ -1489,24 +1571,24 @@ const O6 = () => {
|
|
|
1489
1571
|
) })
|
|
1490
1572
|
}
|
|
1491
1573
|
),
|
|
1492
|
-
DisabledImage: /* @__PURE__ */
|
|
1574
|
+
DisabledImage: /* @__PURE__ */ o.jsx(
|
|
1493
1575
|
"svg",
|
|
1494
1576
|
{
|
|
1495
1577
|
className: e,
|
|
1496
1578
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1497
1579
|
viewBox: "0 0 164.61 164.61",
|
|
1498
1580
|
fill: "currentColor",
|
|
1499
|
-
children: /* @__PURE__ */
|
|
1581
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M77.4,60.19h8.54l-8.54,8.54v-8.54ZM51.61,94.51l30.21-52.01,8.01,13.79,6.47-6.47-14.48-25.02-48.65,84.04h4.11l14.33-14.33ZM103.42,79.68l11.8,20.32h-32.12l-8.85,8.85h56.23l-20.62-35.61-6.44,6.44ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM5,82.3c0,19.83,7.51,37.93,19.82,51.63L133.93,24.83c-13.7-12.32-31.8-19.83-51.63-19.83C39.68,5,5,39.68,5,82.3ZM159.61,82.3c0-19.83-7.51-37.93-19.83-51.63L30.68,139.78c13.7,12.32,31.8,19.83,51.63,19.83,42.63,0,77.3-34.68,77.3-77.3Z" }) })
|
|
1500
1582
|
}
|
|
1501
1583
|
),
|
|
1502
|
-
EnabledImage: /* @__PURE__ */
|
|
1584
|
+
EnabledImage: /* @__PURE__ */ o.jsx(
|
|
1503
1585
|
"svg",
|
|
1504
1586
|
{
|
|
1505
1587
|
className: e,
|
|
1506
1588
|
fill: "currentcolor",
|
|
1507
1589
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1508
1590
|
viewBox: "0 0 164.61 164.61",
|
|
1509
|
-
children: /* @__PURE__ */
|
|
1591
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx(
|
|
1510
1592
|
"path",
|
|
1511
1593
|
{
|
|
1512
1594
|
id: "icon-alert-enabled",
|
|
@@ -1518,163 +1600,163 @@ const O6 = () => {
|
|
|
1518
1600
|
active: t,
|
|
1519
1601
|
disabled: s
|
|
1520
1602
|
}
|
|
1521
|
-
),
|
|
1603
|
+
), X2 = ({
|
|
1522
1604
|
active: t,
|
|
1523
1605
|
className: e = "",
|
|
1524
1606
|
disabled: s
|
|
1525
|
-
}) => /* @__PURE__ */
|
|
1526
|
-
|
|
1607
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
1608
|
+
m,
|
|
1527
1609
|
{
|
|
1528
1610
|
ActiveImage: (
|
|
1529
1611
|
/* icon-ban-active.svg */
|
|
1530
|
-
/* @__PURE__ */
|
|
1612
|
+
/* @__PURE__ */ o.jsx(
|
|
1531
1613
|
"svg",
|
|
1532
1614
|
{
|
|
1533
1615
|
className: e,
|
|
1534
1616
|
fill: "currentcolor",
|
|
1535
1617
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1536
1618
|
viewBox: "0 0 164.61 164.61",
|
|
1537
|
-
children: /* @__PURE__ */
|
|
1619
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M138.74,82.3c0,31.12-25.32,56.44-56.44,56.44-13.76,0-26.39-4.96-36.19-13.17L125.56,46.11c8.22,9.8,13.17,22.43,13.17,36.19ZM82.3,25.87c-31.12,0-56.44,25.32-56.44,56.44,0,13.76,4.96,26.39,13.17,36.19L118.49,39.04c-9.8-8.22-22.43-13.17-36.19-13.17ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM148.74,82.3c0-36.63-29.8-66.44-66.44-66.44S15.87,45.67,15.87,82.3s29.8,66.44,66.44,66.44,66.44-29.8,66.44-66.44Z" }) })
|
|
1538
1620
|
}
|
|
1539
1621
|
)
|
|
1540
1622
|
),
|
|
1541
1623
|
DisabledImage: (
|
|
1542
1624
|
/* icon-ban-disabled.svg */
|
|
1543
|
-
/* @__PURE__ */
|
|
1625
|
+
/* @__PURE__ */ o.jsx(
|
|
1544
1626
|
"svg",
|
|
1545
1627
|
{
|
|
1546
1628
|
className: e,
|
|
1547
1629
|
fill: "currentcolor",
|
|
1548
1630
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1549
1631
|
viewBox: "0 0 164.61 164.61",
|
|
1550
|
-
children: /* @__PURE__ */
|
|
1632
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M82.3,0C36.85,0,0,36.85,0,82.3s36.85,82.3,82.3,82.3,82.3-36.85,82.3-82.3S127.76,0,82.3,0ZM82.3,10c18.14,0,34.72,6.73,47.43,17.8L27.8,129.74c-11.07-12.71-17.8-29.29-17.8-47.43C10,42.44,42.44,10,82.3,10ZM82.3,154.61c-18.14,0-34.72-6.73-47.43-17.8l101.93-101.93c11.07,12.71,17.8,29.29,17.8,47.43,0,39.87-32.44,72.3-72.3,72.3Z" }) })
|
|
1551
1633
|
}
|
|
1552
1634
|
)
|
|
1553
1635
|
),
|
|
1554
1636
|
EnabledImage: (
|
|
1555
1637
|
/* icon-ban-enabled.svg */
|
|
1556
|
-
/* @__PURE__ */
|
|
1638
|
+
/* @__PURE__ */ o.jsx(
|
|
1557
1639
|
"svg",
|
|
1558
1640
|
{
|
|
1559
1641
|
className: e,
|
|
1560
1642
|
fill: "currentcolor",
|
|
1561
1643
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1562
1644
|
viewBox: "0 0 164.61 164.61",
|
|
1563
|
-
children: /* @__PURE__ */
|
|
1645
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M82.3,0C36.85,0,0,36.85,0,82.3s36.85,82.3,82.3,82.3,82.3-36.85,82.3-82.3S127.76,0,82.3,0ZM82.3,10c18.14,0,34.72,6.73,47.43,17.8L27.8,129.74c-11.07-12.71-17.8-29.29-17.8-47.43C10,42.44,42.44,10,82.3,10ZM82.3,154.61c-18.14,0-34.72-6.73-47.43-17.8l101.93-101.93c11.07,12.71,17.8,29.29,17.8,47.43,0,39.87-32.44,72.3-72.3,72.3Z" }) })
|
|
1564
1646
|
}
|
|
1565
1647
|
)
|
|
1566
1648
|
),
|
|
1567
1649
|
active: t,
|
|
1568
1650
|
disabled: s
|
|
1569
1651
|
}
|
|
1570
|
-
),
|
|
1652
|
+
), Q2 = ({
|
|
1571
1653
|
active: t,
|
|
1572
1654
|
className: e = "",
|
|
1573
1655
|
disabled: s
|
|
1574
|
-
}) => /* @__PURE__ */
|
|
1575
|
-
|
|
1656
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
1657
|
+
m,
|
|
1576
1658
|
{
|
|
1577
|
-
ActiveImage: /* @__PURE__ */
|
|
1659
|
+
ActiveImage: /* @__PURE__ */ o.jsx(
|
|
1578
1660
|
"svg",
|
|
1579
1661
|
{
|
|
1580
1662
|
className: e,
|
|
1581
1663
|
fill: "currentcolor",
|
|
1582
1664
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1583
1665
|
viewBox: "0 0 164.61 164.61",
|
|
1584
|
-
children: /* @__PURE__ */
|
|
1666
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM99.38,108.04h-59.68c-4.58,0-8.3-3.71-8.3-8.3v-43.17h59.43c4.72,0,8.54,3.83,8.54,8.54v42.92ZM133.2,106.05c0,2.29-2.58,3.63-4.46,2.31l-22.73-16.02c-.75-.53-1.2-1.39-1.2-2.31v-15.45c0-.92.45-1.78,1.2-2.31l22.73-16.02c1.87-1.32,4.46.02,4.46,2.31v47.49Z" }) })
|
|
1585
1667
|
}
|
|
1586
1668
|
),
|
|
1587
|
-
DisabledImage: /* @__PURE__ */
|
|
1669
|
+
DisabledImage: /* @__PURE__ */ o.jsx(
|
|
1588
1670
|
"svg",
|
|
1589
1671
|
{
|
|
1590
1672
|
className: e,
|
|
1591
1673
|
fill: "currentcolor",
|
|
1592
1674
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1593
1675
|
viewBox: "0 0 164.61 164.61",
|
|
1594
|
-
children: /* @__PURE__ */
|
|
1676
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM31.41,99.74v-43.17h58.14l-51.33,51.33c-3.87-.7-6.82-4.08-6.82-8.16ZM133.2,58.56v47.49c0,2.29-2.58,3.63-4.46,2.31l-22.73-16.02c-.75-.53-1.2-1.39-1.2-2.31v-11.75l17.5-17.5,6.43-4.53c1.87-1.32,4.46.02,4.46,2.31ZM75.05,108.04l24.33-24.33v24.33h-24.33Z" }) })
|
|
1595
1677
|
}
|
|
1596
1678
|
),
|
|
1597
|
-
EnabledImage: /* @__PURE__ */
|
|
1679
|
+
EnabledImage: /* @__PURE__ */ o.jsx(
|
|
1598
1680
|
"svg",
|
|
1599
1681
|
{
|
|
1600
1682
|
className: e,
|
|
1601
1683
|
fill: "currentcolor",
|
|
1602
1684
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1603
1685
|
viewBox: "0 0 164.61 164.61",
|
|
1604
|
-
children: /* @__PURE__ */
|
|
1686
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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" }) })
|
|
1605
1687
|
}
|
|
1606
1688
|
),
|
|
1607
1689
|
active: t,
|
|
1608
1690
|
disabled: s
|
|
1609
1691
|
}
|
|
1610
|
-
),
|
|
1692
|
+
), N2 = ({
|
|
1611
1693
|
active: t,
|
|
1612
1694
|
className: e = "",
|
|
1613
1695
|
disabled: s
|
|
1614
|
-
}) => /* @__PURE__ */
|
|
1615
|
-
|
|
1696
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
1697
|
+
m,
|
|
1616
1698
|
{
|
|
1617
1699
|
ActiveImage: (
|
|
1618
1700
|
/* icon-check-active.svg */
|
|
1619
|
-
/* @__PURE__ */
|
|
1701
|
+
/* @__PURE__ */ o.jsx(
|
|
1620
1702
|
"svg",
|
|
1621
1703
|
{
|
|
1622
1704
|
className: e,
|
|
1623
1705
|
fill: "currentcolor",
|
|
1624
1706
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1625
1707
|
viewBox: "0 0 164.61 164.61",
|
|
1626
|
-
children: /* @__PURE__ */
|
|
1708
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM67.33,128.97l-34.83-44.24,8.71-11.06,26.13,33.18,56.07-71.21,8.71,11.06-64.78,82.27Z" }) })
|
|
1627
1709
|
}
|
|
1628
1710
|
)
|
|
1629
1711
|
),
|
|
1630
1712
|
DisabledImage: (
|
|
1631
1713
|
/* icon-check-disabled.svg */
|
|
1632
|
-
/* @__PURE__ */
|
|
1714
|
+
/* @__PURE__ */ o.jsx(
|
|
1633
1715
|
"svg",
|
|
1634
1716
|
{
|
|
1635
1717
|
className: e,
|
|
1636
1718
|
fill: "currentcolor",
|
|
1637
1719
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1638
1720
|
viewBox: "0 0 164.61 164.61",
|
|
1639
|
-
children: /* @__PURE__ */
|
|
1721
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM45.23,100.9l-12.73-16.17,8.71-11.06,13.77,17.48-9.74,9.74ZM116.25,66.84l-48.92,62.13-5.82-7.39,54.74-54.74Z" }) })
|
|
1640
1722
|
}
|
|
1641
1723
|
)
|
|
1642
1724
|
),
|
|
1643
1725
|
EnabledImage: (
|
|
1644
1726
|
/* icon-check-enabled.svg */
|
|
1645
|
-
/* @__PURE__ */
|
|
1727
|
+
/* @__PURE__ */ o.jsx(
|
|
1646
1728
|
"svg",
|
|
1647
1729
|
{
|
|
1648
1730
|
className: e,
|
|
1649
1731
|
fill: "currentcolor",
|
|
1650
1732
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1651
1733
|
viewBox: "0 0 164.61 164.61",
|
|
1652
|
-
children: /* @__PURE__ */
|
|
1734
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,159.61c-42.63,0-77.3-34.68-77.3-77.3S39.68,5,82.3,5s77.3,34.68,77.3,77.3-34.68,77.3-77.3,77.3ZM132.11,46.7l-8.71-11.06-56.07,71.21-26.13-33.18-8.71,11.06,34.83,44.24,64.78-82.27Z" }) })
|
|
1653
1735
|
}
|
|
1654
1736
|
)
|
|
1655
1737
|
),
|
|
1656
1738
|
active: t,
|
|
1657
1739
|
disabled: s
|
|
1658
1740
|
}
|
|
1659
|
-
),
|
|
1741
|
+
), e8 = ({
|
|
1660
1742
|
active: t,
|
|
1661
1743
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
1662
1744
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1663
1745
|
className: e = "",
|
|
1664
1746
|
disabled: s
|
|
1665
|
-
}) => /* @__PURE__ */
|
|
1666
|
-
|
|
1747
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
1748
|
+
m,
|
|
1667
1749
|
{
|
|
1668
1750
|
ActiveImage: (
|
|
1669
1751
|
/* icon-controller-active.svg */
|
|
1670
|
-
/* @__PURE__ */
|
|
1752
|
+
/* @__PURE__ */ o.jsx(
|
|
1671
1753
|
"svg",
|
|
1672
1754
|
{
|
|
1673
1755
|
className: e,
|
|
1674
1756
|
fill: "currentcolor",
|
|
1675
1757
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1676
1758
|
viewBox: "0 0 164.61 164.61",
|
|
1677
|
-
children: /* @__PURE__ */
|
|
1759
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx(
|
|
1678
1760
|
"path",
|
|
1679
1761
|
{
|
|
1680
1762
|
d: "M111.57,63.01c-.5-1.94-1.51-3.52-3.02-4.74-1.51-1.22-3.27-1.83-5.28-1.83h-42.04c-2.01,0-3.79.61-5.34,1.83-1.54,1.22-2.53,2.8-2.96,4.74l-9.06,36.11c-.14.43-.22,1.08-.22,1.94,0,2.01.74,3.7,2.21,5.07,1.47,1.37,3.25,2.05,5.34,2.05,1.37,0,2.6-.36,3.72-1.08,1.11-.72,1.96-1.69,2.53-2.91l3.02-6.14c1.08-2.23,2.66-3.97,4.74-5.23,2.08-1.26,4.35-1.89,6.79-1.89h20.48c2.44,0,4.71.65,6.79,1.94,2.08,1.29,3.7,3.02,4.85,5.17l3.02,6.14c.58,1.22,1.42,2.19,2.53,2.91,1.11.72,2.35,1.08,3.72,1.08,2.01,0,3.74-.66,5.17-1.99,1.44-1.33,2.19-3,2.26-5.01,0,.07-.07-.61-.22-2.05l-9.06-36.11ZM94.27,61.98c.83-.83,1.85-1.24,3.07-1.24s2.25.41,3.07,1.24c.83.83,1.24,1.85,1.24,3.07s-.41,2.25-1.24,3.07c-.83.83-1.85,1.24-3.07,1.24s-2.25-.41-3.07-1.24c-.83-.83-1.24-1.85-1.24-3.07s.41-2.25,1.24-3.07ZM77.02,76c-.61.61-1.38.92-2.32.92h-4.31v4.31c0,.93-.31,1.71-.92,2.32-.61.61-1.38.92-2.32.92s-1.71-.31-2.32-.92c-.61-.61-.92-1.38-.92-2.32v-4.31h-4.31c-.93,0-1.71-.31-2.32-.92-.61-.61-.92-1.38-.92-2.32s.31-1.71.92-2.32c.61-.61,1.38-.92,2.32-.92h4.31v-4.31c0-.93.31-1.71.92-2.32.61-.61,1.38-.92,2.32-.92s1.71.31,2.32.92c.61.61.92,1.38.92,2.32v4.31h4.31c.93,0,1.71.31,2.32.92s.92,1.38.92,2.32-.31,1.71-.92,2.32ZM91.79,76.75c-.83.83-1.85,1.24-3.07,1.24s-2.25-.41-3.07-1.24c-.83-.83-1.24-1.85-1.24-3.07s.41-2.25,1.24-3.07c.83-.83,1.85-1.24,3.07-1.24s2.25.41,3.07,1.24c.83.83,1.24,1.85,1.24,3.07s-.41,2.25-1.24,3.07ZM100.41,85.38c-.83.83-1.85,1.24-3.07,1.24s-2.25-.41-3.07-1.24c-.83-.83-1.24-1.85-1.24-3.07s.41-2.25,1.24-3.07c.83-.83,1.85-1.24,3.07-1.24s2.25.41,3.07,1.24c.83.83,1.24,1.85,1.24,3.07s-.41,2.25-1.24,3.07ZM109.04,76.75c-.83.83-1.85,1.24-3.07,1.24s-2.25-.41-3.07-1.24c-.83-.83-1.24-1.85-1.24-3.07s.41-2.25,1.24-3.07c.83-.83,1.85-1.24,3.07-1.24s2.25.41,3.07,1.24,1.24,1.85,1.24,3.07-.41,2.25-1.24,3.07ZM82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM124.89,112.22c-3.13,3.05-6.88,4.58-11.27,4.58-3.02,0-5.82-.79-8.41-2.37-2.59-1.58-4.53-3.74-5.82-6.47l-3.02-6.25c-.36-.72-.9-1.26-1.62-1.62-.72-.36-1.47-.54-2.26-.54h-20.48c-.79,0-1.55.18-2.26.54-.72.36-1.26.9-1.62,1.62l-3.02,6.25c-1.29,2.73-3.23,4.89-5.82,6.47-2.59,1.58-5.39,2.37-8.41,2.37-4.31,0-8-1.55-11.05-4.64-3.05-3.09-4.65-6.83-4.8-11.21,0-.65.04-1.29.11-1.94.07-.65.18-1.29.32-1.94l9.06-36.22c1.01-3.88,3.05-7.03,6.15-9.43,3.09-2.41,6.61-3.61,10.56-3.61h42.04c3.95,0,7.47,1.2,10.56,3.61,3.09,2.41,5.14,5.55,6.14,9.43l9.06,36.22c.14.65.27,1.31.38,1.99s.16,1.35.16,1.99c0,4.38-1.56,8.1-4.69,11.16Z",
|
|
@@ -1686,14 +1768,14 @@ const O6 = () => {
|
|
|
1686
1768
|
),
|
|
1687
1769
|
DisabledImage: (
|
|
1688
1770
|
/* icon-controller-disabled.svg */
|
|
1689
|
-
/* @__PURE__ */
|
|
1771
|
+
/* @__PURE__ */ o.jsx(
|
|
1690
1772
|
"svg",
|
|
1691
1773
|
{
|
|
1692
1774
|
className: e,
|
|
1693
1775
|
fill: "currentcolor",
|
|
1694
1776
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1695
1777
|
viewBox: "0 0 164.61 164.61",
|
|
1696
|
-
children: /* @__PURE__ */
|
|
1778
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx(
|
|
1697
1779
|
"path",
|
|
1698
1780
|
{
|
|
1699
1781
|
d: "M96.54,86.55l5.04-5.04c.04.26.07.52.07.8,0,1.22-.41,2.25-1.24,3.07-.83.83-1.85,1.24-3.07,1.24-.28,0-.54-.03-.8-.07ZM105.97,77.99c1.22,0,2.25-.41,3.07-1.24.83-.83,1.24-1.85,1.24-3.07,0-.28-.03-.54-.07-.8l-5.04,5.04c.26.04.52.07.8.07ZM129.04,97.07l-8.6-34.41-7.15,7.15,7.35,29.31c.14,1.44.22,2.12.22,2.05-.07,2.01-.83,3.68-2.26,5.01-1.44,1.33-3.16,1.99-5.17,1.99-1.37,0-2.6-.36-3.72-1.08-1.11-.72-1.96-1.69-2.53-2.91l-3.02-6.14c-1.15-2.16-2.77-3.88-4.85-5.17-2.08-1.29-4.35-1.94-6.79-1.94h-.33l-8.62,8.62h8.95c.79,0,1.55.18,2.26.54.72.36,1.26.9,1.62,1.62l3.02,6.25c1.29,2.73,3.23,4.89,5.82,6.47,2.59,1.58,5.39,2.37,8.41,2.37,4.38,0,8.14-1.53,11.27-4.58,3.13-3.05,4.69-6.77,4.69-11.16,0-.65-.05-1.31-.16-1.99s-.23-1.35-.38-1.99ZM43.77,102.35c-.07-.42-.12-.84-.12-1.29,0-.86.07-1.51.22-1.94l9.06-36.11c.43-1.94,1.42-3.52,2.96-4.74,1.54-1.22,3.32-1.83,5.34-1.83h28.46l8.62-8.62h-37.09c-3.95,0-7.47,1.2-10.56,3.61-3.09,2.41-5.14,5.55-6.14,9.43l-9.06,36.22c-.14.65-.25,1.29-.32,1.94-.07.65-.11,1.29-.11,1.94.1,2.92.85,5.55,2.24,7.9l6.5-6.5ZM74.7,70.45h-4.31v-4.31c0-.93-.31-1.71-.92-2.32-.61-.61-1.38-.92-2.32-.92s-1.71.31-2.32.92c-.61.61-.92,1.38-.92,2.32v4.31h-4.31c-.93,0-1.71.31-2.32.92s-.92,1.38-.92,2.32.31,1.71.92,2.32c.61.61,1.38.92,2.32.92h4.31v4.31c0,.31.05.59.11.86l11.53-11.53c-.27-.07-.56-.11-.86-.11ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM5,82.3c0,19.83,7.51,37.93,19.82,51.63L133.93,24.83c-13.7-12.32-31.8-19.83-51.63-19.83C39.68,5,5,39.68,5,82.3ZM159.61,82.3c0-19.83-7.51-37.93-19.83-51.63L30.68,139.78c13.7,12.32,31.8,19.83,51.63,19.83,42.63,0,77.3-34.68,77.3-77.3Z",
|
|
@@ -1705,14 +1787,14 @@ const O6 = () => {
|
|
|
1705
1787
|
),
|
|
1706
1788
|
EnabledImage: (
|
|
1707
1789
|
/* icon-controller-enabled.svg */
|
|
1708
|
-
/* @__PURE__ */
|
|
1790
|
+
/* @__PURE__ */ o.jsx(
|
|
1709
1791
|
"svg",
|
|
1710
1792
|
{
|
|
1711
1793
|
className: e,
|
|
1712
1794
|
fill: "currentcolor",
|
|
1713
1795
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1714
1796
|
viewBox: "0 0 164.61 164.61",
|
|
1715
|
-
children: /* @__PURE__ */
|
|
1797
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx(
|
|
1716
1798
|
"path",
|
|
1717
1799
|
{
|
|
1718
1800
|
d: "M50.88,116.8c-4.31,0-8-1.55-11.05-4.64-3.05-3.09-4.65-6.83-4.8-11.21,0-.65.04-1.29.11-1.94s.18-1.29.32-1.94l9.06-36.22c1.01-3.88,3.05-7.03,6.14-9.43s6.61-3.61,10.56-3.61h42.04c3.95,0,7.47,1.2,10.56,3.61s5.14,5.55,6.14,9.43l9.06,36.22c.14.65.27,1.31.38,1.99s.16,1.35.16,1.99c0,4.38-1.56,8.1-4.69,11.16s-6.88,4.58-11.27,4.58c-3.02,0-5.82-.79-8.41-2.37s-4.53-3.74-5.82-6.47l-3.02-6.25c-.36-.72-.9-1.26-1.62-1.62s-1.47-.54-2.26-.54h-20.48c-.79,0-1.55.18-2.26.54s-1.26.9-1.62,1.62l-3.02,6.25c-1.29,2.73-3.23,4.89-5.82,6.47s-5.39,2.37-8.41,2.37ZM51.2,108.18c1.37,0,2.61-.36,3.72-1.08,1.11-.72,1.96-1.69,2.53-2.91l3.02-6.14c1.08-2.23,2.66-3.97,4.74-5.23s4.35-1.89,6.79-1.89h20.48c2.44,0,4.71.65,6.79,1.94s3.7,3.02,4.85,5.17l3.02,6.14c.57,1.22,1.42,2.19,2.53,2.91,1.11.72,2.35,1.08,3.72,1.08,2.01,0,3.74-.66,5.17-1.99,1.44-1.33,2.19-3,2.26-5.01,0,.07-.07-.61-.22-2.05l-9.06-36.11c-.5-1.94-1.51-3.52-3.02-4.74s-3.27-1.83-5.28-1.83h-42.04c-2.01,0-3.79.61-5.34,1.83s-2.53,2.8-2.96,4.74l-9.06,36.11c-.14.43-.22,1.08-.22,1.94,0,2.01.74,3.7,2.21,5.07,1.47,1.37,3.25,2.05,5.34,2.05ZM88.72,77.99c1.22,0,2.25-.41,3.07-1.24s1.24-1.85,1.24-3.07-.41-2.25-1.24-3.07-1.85-1.24-3.07-1.24-2.25.41-3.07,1.24c-.83.83-1.24,1.85-1.24,3.07s.41,2.25,1.24,3.07c.83.83,1.85,1.24,3.07,1.24ZM97.34,69.37c1.22,0,2.25-.41,3.07-1.24s1.24-1.85,1.24-3.07-.41-2.25-1.24-3.07-1.85-1.24-3.07-1.24-2.25.41-3.07,1.24-1.24,1.85-1.24,3.07.41,2.25,1.24,3.07,1.85,1.24,3.07,1.24ZM97.34,86.62c1.22,0,2.25-.41,3.07-1.24s1.24-1.85,1.24-3.07-.41-2.25-1.24-3.07c-.83-.83-1.85-1.24-3.07-1.24s-2.25.41-3.07,1.24c-.83.83-1.24,1.85-1.24,3.07s.41,2.25,1.24,3.07,1.85,1.24,3.07,1.24ZM105.97,77.99c1.22,0,2.25-.41,3.07-1.24s1.24-1.85,1.24-3.07-.41-2.25-1.24-3.07-1.85-1.24-3.07-1.24-2.25.41-3.07,1.24-1.24,1.85-1.24,3.07.41,2.25,1.24,3.07,1.85,1.24,3.07,1.24ZM67.16,84.46c.93,0,1.71-.31,2.32-.92s.92-1.38.92-2.32v-4.31h4.31c.93,0,1.71-.31,2.32-.92s.92-1.38.92-2.32-.31-1.71-.92-2.32-1.38-.92-2.32-.92h-4.31v-4.31c0-.93-.31-1.71-.92-2.32s-1.38-.92-2.32-.92-1.71.31-2.32.92-.92,1.38-.92,2.32v4.31h-4.31c-.93,0-1.71.31-2.32.92s-.92,1.38-.92,2.32.31,1.71.92,2.32,1.38.92,2.32.92h4.31v4.31c0,.93.31,1.71.92,2.32s1.38.92,2.32.92ZM82.3,164.61C36.92,164.61,0,127.69,0,82.3S36.92,0,82.3,0s82.3,36.92,82.3,82.3-36.92,82.3-82.3,82.3ZM82.3,5C39.68,5,5,39.68,5,82.3s34.68,77.3,77.3,77.3,77.3-34.68,77.3-77.3S124.93,5,82.3,5Z",
|
|
@@ -1725,270 +1807,270 @@ const O6 = () => {
|
|
|
1725
1807
|
active: t,
|
|
1726
1808
|
disabled: s
|
|
1727
1809
|
}
|
|
1728
|
-
),
|
|
1810
|
+
), t8 = ({
|
|
1729
1811
|
active: t,
|
|
1730
1812
|
className: e = "",
|
|
1731
1813
|
disabled: s
|
|
1732
|
-
}) => /* @__PURE__ */
|
|
1733
|
-
|
|
1814
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
1815
|
+
m,
|
|
1734
1816
|
{
|
|
1735
1817
|
ActiveImage: (
|
|
1736
1818
|
/* icon-down-active.svg */
|
|
1737
|
-
/* @__PURE__ */
|
|
1819
|
+
/* @__PURE__ */ o.jsx(
|
|
1738
1820
|
"svg",
|
|
1739
1821
|
{
|
|
1740
1822
|
className: e,
|
|
1741
1823
|
fill: "currentcolor",
|
|
1742
1824
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1743
1825
|
viewBox: "0 0 164.61 164.61",
|
|
1744
|
-
children: /* @__PURE__ */
|
|
1826
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM93.21,107.67l-10.91,12.23-10.91-12.23-35.78-40.12,12.15-10.84,34.53,38.72,34.53-38.72,12.15,10.84-35.78,40.12Z" }) })
|
|
1745
1827
|
}
|
|
1746
1828
|
)
|
|
1747
1829
|
),
|
|
1748
1830
|
DisabledImage: (
|
|
1749
1831
|
/* icon-down-disabled.svg */
|
|
1750
|
-
/* @__PURE__ */
|
|
1832
|
+
/* @__PURE__ */ o.jsx(
|
|
1751
1833
|
"svg",
|
|
1752
1834
|
{
|
|
1753
1835
|
className: e,
|
|
1754
1836
|
fill: "currentcolor",
|
|
1755
1837
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1756
1838
|
viewBox: "0 0 164.61 164.61",
|
|
1757
|
-
children: /* @__PURE__ */
|
|
1839
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M82.3,164.61c45.38,0,82.3-36.92,82.3-82.3S127.69,0,82.3,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3ZM82.3,159.61c-19.83,0-37.93-7.51-51.63-19.83L139.78,30.68c12.32,13.7,19.82,31.8,19.82,51.63,0,42.63-34.68,77.3-77.3,77.3ZM82.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,5ZM52.88,93.25l-15.26-17.11,12.15-10.84,14.64,16.41-11.53,11.53ZM118.84,65.3l12.15,10.84-35.78,40.12-10.91,12.23-10.91-12.23-3.09-3.47,11.53-11.53,2.47,2.77,34.53-38.72Z" }) })
|
|
1758
1840
|
}
|
|
1759
1841
|
)
|
|
1760
1842
|
),
|
|
1761
1843
|
EnabledImage: (
|
|
1762
1844
|
/* icon-down-enabled.svg */
|
|
1763
|
-
/* @__PURE__ */
|
|
1845
|
+
/* @__PURE__ */ o.jsx(
|
|
1764
1846
|
"svg",
|
|
1765
1847
|
{
|
|
1766
1848
|
className: e,
|
|
1767
1849
|
fill: "currentcolor",
|
|
1768
1850
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1769
1851
|
viewBox: "0 0 164.61 164.61",
|
|
1770
|
-
children: /* @__PURE__ */
|
|
1852
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5ZM47.77,56.71l-12.15,10.84,35.78,40.12,10.91,12.23,10.91-12.23,35.78-40.12-12.15-10.84-34.53,38.72-34.53-38.72Z" }) })
|
|
1771
1853
|
}
|
|
1772
1854
|
)
|
|
1773
1855
|
),
|
|
1774
1856
|
active: t,
|
|
1775
1857
|
disabled: s
|
|
1776
1858
|
}
|
|
1777
|
-
),
|
|
1859
|
+
), o8 = ({
|
|
1778
1860
|
active: t,
|
|
1779
1861
|
className: e = "",
|
|
1780
1862
|
disabled: s
|
|
1781
|
-
}) => /* @__PURE__ */
|
|
1782
|
-
|
|
1863
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
1864
|
+
m,
|
|
1783
1865
|
{
|
|
1784
1866
|
ActiveImage: (
|
|
1785
1867
|
/* icon-elipses-active.svg */
|
|
1786
|
-
/* @__PURE__ */
|
|
1868
|
+
/* @__PURE__ */ o.jsx(
|
|
1787
1869
|
"svg",
|
|
1788
1870
|
{
|
|
1789
1871
|
className: e,
|
|
1790
1872
|
fill: "currentcolor",
|
|
1791
1873
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1792
1874
|
viewBox: "0 0 164.61 164.61",
|
|
1793
|
-
children: /* @__PURE__ */
|
|
1875
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM52.93,91.35c-2.51,2.51-5.52,3.76-9.05,3.76s-6.54-1.25-9.05-3.76-3.76-5.52-3.76-9.05,1.25-6.54,3.76-9.05c2.51-2.51,5.52-3.76,9.05-3.76s6.54,1.25,9.05,3.76,3.76,5.52,3.76,9.05-1.25,6.54-3.76,9.05ZM91.35,91.35c-2.51,2.51-5.52,3.76-9.05,3.76s-6.54-1.25-9.05-3.76c-2.51-2.51-3.76-5.52-3.76-9.05s1.25-6.54,3.76-9.05,5.52-3.76,9.05-3.76,6.54,1.25,9.05,3.76c2.51,2.51,3.76,5.52,3.76,9.05s-1.25,6.54-3.76,9.05ZM129.77,91.35c-2.51,2.51-5.52,3.76-9.05,3.76s-6.54-1.25-9.05-3.76c-2.51-2.51-3.76-5.52-3.76-9.05s1.25-6.54,3.76-9.05,5.52-3.76,9.05-3.76,6.54,1.25,9.05,3.76c2.51,2.51,3.76,5.52,3.76,9.05s-1.25,6.54-3.76,9.05Z" }) })
|
|
1794
1876
|
}
|
|
1795
1877
|
)
|
|
1796
1878
|
),
|
|
1797
1879
|
DisabledImage: (
|
|
1798
1880
|
/* icon-elipses-disabled.svg */
|
|
1799
|
-
/* @__PURE__ */
|
|
1881
|
+
/* @__PURE__ */ o.jsx(
|
|
1800
1882
|
"svg",
|
|
1801
1883
|
{
|
|
1802
1884
|
className: e,
|
|
1803
1885
|
fill: "currentcolor",
|
|
1804
1886
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1805
1887
|
viewBox: "0 0 164.61 164.61",
|
|
1806
|
-
children: /* @__PURE__ */
|
|
1888
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM34.84,91.35c-2.51-2.51-3.76-5.52-3.76-9.05s1.25-6.54,3.76-9.05,5.52-3.76,9.05-3.76,6.54,1.25,9.05,3.76c2.51,2.51,3.76,5.52,3.76,9.05s-1.25,6.54-3.76,9.05c-2.51,2.51-5.52,3.76-9.05,3.76s-6.54-1.25-9.05-3.76ZM129.77,73.26c2.51,2.51,3.76,5.52,3.76,9.05s-1.25,6.54-3.76,9.05c-2.51,2.51-5.52,3.76-9.05,3.76s-6.54-1.25-9.05-3.76-3.76-5.52-3.76-9.05,1.25-6.54,3.76-9.05c2.51-2.51,5.52-3.76,9.05-3.76s6.54,1.25,9.05,3.76Z" }) })
|
|
1807
1889
|
}
|
|
1808
1890
|
)
|
|
1809
1891
|
),
|
|
1810
1892
|
EnabledImage: (
|
|
1811
1893
|
/* icon-elipses-enabled.svg */
|
|
1812
|
-
/* @__PURE__ */
|
|
1894
|
+
/* @__PURE__ */ o.jsx(
|
|
1813
1895
|
"svg",
|
|
1814
1896
|
{
|
|
1815
1897
|
className: e,
|
|
1816
1898
|
fill: "currentcolor",
|
|
1817
1899
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1818
1900
|
viewBox: "0 0 164.61 164.61",
|
|
1819
|
-
children: /* @__PURE__ */
|
|
1901
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5ZM43.88,95.11c-3.52,0-6.54-1.25-9.05-3.76s-3.76-5.52-3.76-9.05,1.25-6.54,3.76-9.05,5.52-3.76,9.05-3.76,6.54,1.25,9.05,3.76,3.76,5.52,3.76,9.05-1.25,6.54-3.76,9.05-5.52,3.76-9.05,3.76ZM82.3,95.11c-3.52,0-6.54-1.25-9.05-3.76s-3.76-5.52-3.76-9.05,1.25-6.54,3.76-9.05,5.52-3.76,9.05-3.76,6.54,1.25,9.05,3.76,3.76,5.52,3.76,9.05-1.25,6.54-3.76,9.05-5.52,3.76-9.05,3.76ZM120.73,95.11c-3.52,0-6.54-1.25-9.05-3.76s-3.76-5.52-3.76-9.05,1.25-6.54,3.76-9.05c2.51-2.51,5.52-3.76,9.05-3.76s6.54,1.25,9.05,3.76,3.76,5.52,3.76,9.05-1.25,6.54-3.76,9.05-5.52,3.76-9.05,3.76Z" }) })
|
|
1820
1902
|
}
|
|
1821
1903
|
)
|
|
1822
1904
|
),
|
|
1823
1905
|
active: t,
|
|
1824
1906
|
disabled: s
|
|
1825
1907
|
}
|
|
1826
|
-
),
|
|
1908
|
+
), s8 = ({
|
|
1827
1909
|
active: t,
|
|
1828
1910
|
className: e = "",
|
|
1829
1911
|
disabled: s
|
|
1830
|
-
}) => /* @__PURE__ */
|
|
1831
|
-
|
|
1912
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
1913
|
+
m,
|
|
1832
1914
|
{
|
|
1833
1915
|
ActiveImage: (
|
|
1834
1916
|
/* icon-flag-active.svg */
|
|
1835
|
-
/* @__PURE__ */
|
|
1917
|
+
/* @__PURE__ */ o.jsx(
|
|
1836
1918
|
"svg",
|
|
1837
1919
|
{
|
|
1838
1920
|
className: e,
|
|
1839
1921
|
fill: "currentcolor",
|
|
1840
1922
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1841
1923
|
viewBox: "0 0 164.61 164.61",
|
|
1842
|
-
children: /* @__PURE__ */
|
|
1924
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM124.95,102.2h-39.8l-2.27-11.37h-31.84v39.8h-11.37V33.98h51.17l2.27,11.37h31.84v56.86Z" }) })
|
|
1843
1925
|
}
|
|
1844
1926
|
)
|
|
1845
1927
|
),
|
|
1846
1928
|
DisabledImage: (
|
|
1847
1929
|
/* icon-flag-disabled.svg */
|
|
1848
|
-
/* @__PURE__ */
|
|
1930
|
+
/* @__PURE__ */ o.jsx(
|
|
1849
1931
|
"svg",
|
|
1850
1932
|
{
|
|
1851
1933
|
className: e,
|
|
1852
1934
|
fill: "currentcolor",
|
|
1853
1935
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1854
1936
|
viewBox: "0 0 164.61 164.61",
|
|
1855
|
-
children: /* @__PURE__ */
|
|
1937
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M124.95,58.15v44.06h-39.8l-.71-3.55,40.51-40.51ZM51.03,95.09v-4.26h4.26l45.48-45.48h-7.67l-2.27-11.37h-51.17v72.48l11.37-11.37ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM5,82.3c0,19.83,7.51,37.93,19.82,51.63L133.93,24.83c-13.7-12.32-31.8-19.83-51.63-19.83C39.68,5,5,39.68,5,82.3ZM159.61,82.3c0-19.83-7.51-37.93-19.83-51.63L30.68,139.78c13.7,12.32,31.8,19.83,51.63,19.83,42.63,0,77.3-34.68,77.3-77.3Z" }) })
|
|
1856
1938
|
}
|
|
1857
1939
|
)
|
|
1858
1940
|
),
|
|
1859
1941
|
EnabledImage: (
|
|
1860
1942
|
/* icon-flag-enabled.svg */
|
|
1861
|
-
/* @__PURE__ */
|
|
1943
|
+
/* @__PURE__ */ o.jsx(
|
|
1862
1944
|
"svg",
|
|
1863
1945
|
{
|
|
1864
1946
|
className: e,
|
|
1865
1947
|
fill: "currentcolor",
|
|
1866
1948
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1867
1949
|
viewBox: "0 0 164.61 164.61",
|
|
1868
|
-
children: /* @__PURE__ */
|
|
1950
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M39.66,130.63V33.98h51.17l2.27,11.37h31.84v56.86h-39.8l-2.27-11.37h-31.84v39.8h-11.37ZM82.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,159.61c-42.63,0-77.3-34.68-77.3-77.3S39.68,5,82.3,5s77.3,34.68,77.3,77.3-34.68,77.3-77.3,77.3Z" }) })
|
|
1869
1951
|
}
|
|
1870
1952
|
)
|
|
1871
1953
|
),
|
|
1872
1954
|
active: t,
|
|
1873
1955
|
disabled: s
|
|
1874
1956
|
}
|
|
1875
|
-
),
|
|
1957
|
+
), n8 = ({
|
|
1876
1958
|
active: t,
|
|
1877
1959
|
className: e = "",
|
|
1878
1960
|
disabled: s
|
|
1879
|
-
}) => /* @__PURE__ */
|
|
1880
|
-
|
|
1961
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
1962
|
+
m,
|
|
1881
1963
|
{
|
|
1882
1964
|
ActiveImage: (
|
|
1883
1965
|
/* /Users/hvolmer/Downloads/SVG/icon-gear-active.svg */
|
|
1884
|
-
/* @__PURE__ */
|
|
1966
|
+
/* @__PURE__ */ o.jsx(
|
|
1885
1967
|
"svg",
|
|
1886
1968
|
{
|
|
1887
1969
|
className: e,
|
|
1888
1970
|
fill: "currentcolor",
|
|
1889
1971
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1890
1972
|
viewBox: "0 0 164.61 164.61",
|
|
1891
|
-
children: /* @__PURE__ */
|
|
1973
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M96.59,68.3c3.87,3.87,5.8,8.53,5.8,14s-1.93,10.13-5.8,14-8.53,5.8-14,5.8-10.25-1.93-14.07-5.8c-3.82-3.87-5.73-8.53-5.73-14s1.91-10.13,5.73-14c3.82-3.87,8.51-5.8,14.07-5.8s10.13,1.93,14,5.8ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM124.58,78.49l14.56-11.03-15.55-26.87-16.83,7.07c-1.04-.75-2.1-1.46-3.18-2.12-1.08-.66-2.24-1.23-3.46-1.7l-2.26-18.1h-31.11l-2.26,18.1c-1.13.47-2.26,1.04-3.39,1.7-1.13.66-2.22,1.37-3.25,2.12l-16.83-7.07-15.55,26.87,14.56,11.03c-.09.66-.14,1.3-.14,1.91v3.82c0,.61.05,1.25.14,1.91l-14.56,11.03,15.55,26.87,16.83-7.07c1.04.75,2.1,1.46,3.18,2.12s2.24,1.23,3.46,1.7l2.26,18.1h31.11l2.26-18.1c1.13-.47,2.26-1.04,3.39-1.7,1.13-.66,2.22-1.37,3.25-2.12l16.69,7.07,15.55-26.87-14.56-11.03c.19-.66.28-1.3.28-1.91v-3.82c0-.61-.05-1.25-.14-1.91Z" }) })
|
|
1892
1974
|
}
|
|
1893
1975
|
)
|
|
1894
1976
|
),
|
|
1895
1977
|
DisabledImage: (
|
|
1896
1978
|
/* /Users/hvolmer/Downloads/SVG/icon-gear-disabled.svg */
|
|
1897
|
-
/* @__PURE__ */
|
|
1979
|
+
/* @__PURE__ */ o.jsx(
|
|
1898
1980
|
"svg",
|
|
1899
1981
|
{
|
|
1900
1982
|
className: e,
|
|
1901
1983
|
fill: "currentcolor",
|
|
1902
1984
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1903
1985
|
viewBox: "0 0 164.61 164.61",
|
|
1904
|
-
children: /* @__PURE__ */
|
|
1986
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM25.46,97.15l14.56-11.03c-.09-.66-.14-1.3-.14-1.91v-3.82c0-.61.05-1.25.14-1.91l-14.56-11.03,15.55-26.87,16.83,7.07c1.04-.75,2.12-1.46,3.25-2.12,1.13-.66,2.26-1.23,3.39-1.7l2.26-18.1h31.11l2.26,18.1c.52.2,1.01.42,1.51.66l-18.05,18.05c-.33-.01-.65-.04-.99-.04-5.56,0-10.25,1.93-14.07,5.8-3.82,3.87-5.73,8.53-5.73,14,0,.34.03.66.04.99l-28.75,28.75-8.62-14.89ZM139.15,67.46l-14.56,11.03c.09.66.14,1.3.14,1.91v3.82c0,.61-.09,1.25-.28,1.91l14.56,11.03-15.55,26.87-16.69-7.07c-1.04.75-2.12,1.46-3.25,2.12-1.13.66-2.26,1.23-3.39,1.7l-2.26,18.1h-31.11l-2.26-18.1c-.52-.2-1.01-.42-1.51-.66l18.08-18.08c.5.03,1.01.07,1.53.07,5.47,0,10.13-1.93,14-5.8s5.8-8.53,5.8-14c0-.52-.03-1.02-.07-1.53l28.21-28.21,8.62,14.89Z" }) })
|
|
1905
1987
|
}
|
|
1906
1988
|
)
|
|
1907
1989
|
),
|
|
1908
1990
|
EnabledImage: (
|
|
1909
1991
|
/* /Users/hvolmer/Downloads/SVG/icon-gear-enabled.svg */
|
|
1910
|
-
/* @__PURE__ */
|
|
1992
|
+
/* @__PURE__ */ o.jsx(
|
|
1911
1993
|
"svg",
|
|
1912
1994
|
{
|
|
1913
1995
|
className: e,
|
|
1914
1996
|
fill: "currentcolor",
|
|
1915
1997
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1916
1998
|
viewBox: "0 0 164.61 164.61",
|
|
1917
|
-
children: /* @__PURE__ */
|
|
1999
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M66.75,138.87l-2.26-18.1c-1.23-.47-2.38-1.04-3.46-1.7s-2.14-1.37-3.18-2.12l-16.83,7.07-15.55-26.87,14.56-11.03c-.09-.66-.14-1.3-.14-1.91v-3.82c0-.61.05-1.25.14-1.91l-14.56-11.03,15.55-26.87,16.83,7.07c1.04-.75,2.12-1.46,3.25-2.12,1.13-.66,2.26-1.23,3.39-1.7l2.26-18.1h31.11l2.26,18.1c1.23.47,2.38,1.04,3.46,1.7,1.08.66,2.14,1.37,3.18,2.12l16.83-7.07,15.55,26.87-14.56,11.03c.09.66.14,1.3.14,1.91v3.82c0,.61-.09,1.25-.28,1.91l14.56,11.03-15.55,26.87-16.69-7.07c-1.04.75-2.12,1.46-3.25,2.12s-2.26,1.23-3.39,1.7l-2.26,18.1h-31.11ZM82.59,102.1c5.47,0,10.13-1.93,14-5.8s5.8-8.53,5.8-14-1.93-10.13-5.8-14c-3.87-3.87-8.53-5.8-14-5.8s-10.25,1.93-14.07,5.8c-3.82,3.87-5.73,8.53-5.73,14s1.91,10.13,5.73,14,8.51,5.8,14.07,5.8ZM82.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" }) })
|
|
1918
2000
|
}
|
|
1919
2001
|
)
|
|
1920
2002
|
),
|
|
1921
2003
|
active: t,
|
|
1922
2004
|
disabled: s
|
|
1923
2005
|
}
|
|
1924
|
-
),
|
|
2006
|
+
), c8 = ({
|
|
1925
2007
|
active: t,
|
|
1926
2008
|
className: e = "",
|
|
1927
2009
|
disabled: s
|
|
1928
|
-
}) => /* @__PURE__ */
|
|
1929
|
-
|
|
2010
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2011
|
+
m,
|
|
1930
2012
|
{
|
|
1931
2013
|
ActiveImage: (
|
|
1932
2014
|
/* icon-glass-active.svg */
|
|
1933
|
-
/* @__PURE__ */
|
|
2015
|
+
/* @__PURE__ */ o.jsx(
|
|
1934
2016
|
"svg",
|
|
1935
2017
|
{
|
|
1936
2018
|
className: e,
|
|
1937
2019
|
fill: "currentcolor",
|
|
1938
2020
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1939
2021
|
viewBox: "0 0 164.61 164.61",
|
|
1940
|
-
children: /* @__PURE__ */
|
|
2022
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M79.55,85.06l5.51-5.51h32.39v5.51h-32.39v41.83h-5.51v-41.83ZM47.16,117.45l32.39-32.39h-32.39v32.39ZM79.55,37.72h-32.39v41.83h32.39v-41.83ZM85.06,79.55l32.39-32.39v-9.43h-32.39v41.83ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM122.99,32.18H41.61v100.25h81.38V32.18Z" }) })
|
|
1941
2023
|
}
|
|
1942
2024
|
)
|
|
1943
2025
|
),
|
|
1944
2026
|
DisabledImage: (
|
|
1945
2027
|
/* icon-glass-disabled.svg */
|
|
1946
|
-
/* @__PURE__ */
|
|
2028
|
+
/* @__PURE__ */ o.jsx(
|
|
1947
2029
|
"svg",
|
|
1948
2030
|
{
|
|
1949
2031
|
className: e,
|
|
1950
2032
|
fill: "currentcolor",
|
|
1951
2033
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1952
2034
|
viewBox: "0 0 164.61 164.61",
|
|
1953
|
-
children: /* @__PURE__ */
|
|
2035
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM41.61,104.51V32.18h72.33l-5.54,5.54h-23.34v23.34l-5.51,5.51v-28.85h-32.39v41.83h19.42l-5.51,5.51h-13.91v13.91l-5.54,5.54ZM122.99,60.1v72.33H50.66l28.89-28.89v23.34h5.51v-28.85l12.97-12.97h19.42v-5.51h-13.91l19.45-19.45Z" }) })
|
|
1954
2036
|
}
|
|
1955
2037
|
)
|
|
1956
2038
|
),
|
|
1957
2039
|
EnabledImage: (
|
|
1958
2040
|
/* icon-glass-enabled.svg */
|
|
1959
|
-
/* @__PURE__ */
|
|
2041
|
+
/* @__PURE__ */ o.jsx(
|
|
1960
2042
|
"svg",
|
|
1961
2043
|
{
|
|
1962
2044
|
className: e,
|
|
1963
2045
|
fill: "currentcolor",
|
|
1964
2046
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1965
2047
|
viewBox: "0 0 164.61 164.61",
|
|
1966
|
-
children: /* @__PURE__ */
|
|
2048
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M117.45,32.18H41.61v100.25h81.38V32.18h-5.54ZM117.45,47.16l-32.39,32.39h32.39v5.51h-32.39v41.83h-5.51v-41.83l-32.39,32.39v-32.39h32.39l5.51-5.51v-41.83h32.39v9.43ZM79.55,37.72v41.83h-32.39v-41.83h32.39ZM82.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" }) })
|
|
1967
2049
|
}
|
|
1968
2050
|
)
|
|
1969
2051
|
),
|
|
1970
2052
|
active: t,
|
|
1971
2053
|
disabled: s
|
|
1972
2054
|
}
|
|
1973
|
-
),
|
|
2055
|
+
), r8 = ({
|
|
1974
2056
|
active: t,
|
|
1975
2057
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
1976
2058
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1977
2059
|
className: e = "",
|
|
1978
2060
|
disabled: s
|
|
1979
|
-
}) => /* @__PURE__ */
|
|
1980
|
-
|
|
2061
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2062
|
+
m,
|
|
1981
2063
|
{
|
|
1982
2064
|
ActiveImage: (
|
|
1983
2065
|
/* icon-hdmi-active.svg */
|
|
1984
|
-
/* @__PURE__ */
|
|
2066
|
+
/* @__PURE__ */ o.jsx(
|
|
1985
2067
|
"svg",
|
|
1986
2068
|
{
|
|
1987
2069
|
className: e,
|
|
1988
2070
|
fill: "currentcolor",
|
|
1989
2071
|
xmlns: "http://www.w3.org/2000/svg",
|
|
1990
2072
|
viewBox: "0 0 164.61 164.61",
|
|
1991
|
-
children: /* @__PURE__ */
|
|
2073
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx(
|
|
1992
2074
|
"path",
|
|
1993
2075
|
{
|
|
1994
2076
|
d: "M71.55,55.43h-10.75v-16.12h43v16.12h-10.75v-10.75h-5.37v10.75h-10.75v-10.75h-5.37v10.75ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM119.93,55.43h-5.37v-16.12c0-2.96-1.05-5.49-3.16-7.59-2.11-2.11-4.64-3.16-7.59-3.16h-43c-2.96,0-5.49,1.05-7.59,3.16s-3.16,4.64-3.16,7.59v16.12h-5.38v32.25l16.12,32.25v16.12h43v-16.12l16.12-32.25v-32.25ZM55.43,84.99l16.12,32.25v8.06h21.5v-8.06l16.12-32.25v-18.81h-53.75v18.81Z",
|
|
@@ -2000,14 +2082,14 @@ const O6 = () => {
|
|
|
2000
2082
|
),
|
|
2001
2083
|
DisabledImage: (
|
|
2002
2084
|
/* icon-hdmi-disabled.svg */
|
|
2003
|
-
/* @__PURE__ */
|
|
2085
|
+
/* @__PURE__ */ o.jsx(
|
|
2004
2086
|
"svg",
|
|
2005
2087
|
{
|
|
2006
2088
|
className: e,
|
|
2007
2089
|
fill: "currentcolor",
|
|
2008
2090
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2009
2091
|
viewBox: "0 0 164.61 164.61",
|
|
2010
|
-
children: /* @__PURE__ */
|
|
2092
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx(
|
|
2011
2093
|
"path",
|
|
2012
2094
|
{
|
|
2013
2095
|
d: "M49.27,96.86l-4.59-9.18v-32.25h5.37v-16.12c0-2.96,1.05-5.49,3.16-7.59,2.11-2.11,4.64-3.16,7.59-3.16h43c2.96,0,5.49,1.05,7.59,3.16.52.52.98,1.07,1.37,1.64l-8.96,8.96v-3.02h-43v16.12h10.75v-10.75h5.37v10.75h10.75v-10.75h5.37v8.39l-13.11,13.11h-24.52v18.81l1.9,3.8-8.06,8.06ZM109.18,73.91v11.08l-16.12,32.25v8.06h-21.5v-8.06l-1.9-3.8-8.85,8.85v13.77h43v-16.12l16.12-32.25v-24.52l-10.75,10.75ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM5,82.3c0,19.83,7.51,37.93,19.82,51.63L133.93,24.83c-13.7-12.32-31.8-19.83-51.63-19.83C39.68,5,5,39.68,5,82.3ZM159.61,82.3c0-19.83-7.51-37.93-19.83-51.63L30.68,139.78c13.7,12.32,31.8,19.83,51.63,19.83,42.63,0,77.3-34.68,77.3-77.3Z",
|
|
@@ -2019,14 +2101,14 @@ const O6 = () => {
|
|
|
2019
2101
|
),
|
|
2020
2102
|
EnabledImage: (
|
|
2021
2103
|
/* icon-hdmi-enabled.svg */
|
|
2022
|
-
/* @__PURE__ */
|
|
2104
|
+
/* @__PURE__ */ o.jsx(
|
|
2023
2105
|
"svg",
|
|
2024
2106
|
{
|
|
2025
2107
|
className: e,
|
|
2026
2108
|
fill: "currentcolor",
|
|
2027
2109
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2028
2110
|
viewBox: "0 0 164.61 164.61",
|
|
2029
|
-
children: /* @__PURE__ */
|
|
2111
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx(
|
|
2030
2112
|
"path",
|
|
2031
2113
|
{
|
|
2032
2114
|
d: "M60.8,136.05v-16.12l-16.12-32.25v-32.25h5.37v-16.12c0-2.96,1.05-5.49,3.16-7.59,2.11-2.11,4.64-3.16,7.59-3.16h43c2.96,0,5.49,1.05,7.59,3.16s3.16,4.64,3.16,7.59v16.12h5.37v32.25l-16.12,32.25v16.12h-43ZM60.8,55.43h10.75v-10.75h5.37v10.75h10.75v-10.75h5.37v10.75h10.75v-16.12h-43v16.12ZM71.55,125.3h21.5v-8.06l16.12-32.25v-18.81h-53.75v18.81l16.12,32.25v8.06ZM82.3,164.61C36.92,164.61,0,127.69,0,82.3S36.92,0,82.3,0s82.3,36.92,82.3,82.3-36.92,82.3-82.3,82.3ZM82.3,5C39.68,5,5,39.68,5,82.3s34.68,77.3,77.3,77.3,77.3-34.68,77.3-77.3S124.93,5,82.3,5Z",
|
|
@@ -2039,488 +2121,488 @@ const O6 = () => {
|
|
|
2039
2121
|
active: t,
|
|
2040
2122
|
disabled: s
|
|
2041
2123
|
}
|
|
2042
|
-
),
|
|
2124
|
+
), l8 = ({
|
|
2043
2125
|
active: t,
|
|
2044
2126
|
className: e = "",
|
|
2045
2127
|
disabled: s
|
|
2046
|
-
}) => /* @__PURE__ */
|
|
2047
|
-
|
|
2128
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2129
|
+
m,
|
|
2048
2130
|
{
|
|
2049
2131
|
ActiveImage: (
|
|
2050
2132
|
/* icon-laptop-active.svg */
|
|
2051
|
-
/* @__PURE__ */
|
|
2133
|
+
/* @__PURE__ */ o.jsx(
|
|
2052
2134
|
"svg",
|
|
2053
2135
|
{
|
|
2054
2136
|
className: e,
|
|
2055
2137
|
fill: "currentcolor",
|
|
2056
2138
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2057
2139
|
viewBox: "0 0 164.61 164.61",
|
|
2058
|
-
children: /* @__PURE__ */
|
|
2140
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M114.35,100.33H50.26v-44.07h64.1v44.07ZM82.3,104.34c-1.14,0-2.09.38-2.85,1.15s-1.15,1.72-1.15,2.85.38,2.09,1.15,2.85,1.72,1.15,2.85,1.15,2.09-.38,2.85-1.15,1.15-1.72,1.15-2.85-.38-2.09-1.15-2.85-1.72-1.15-2.85-1.15ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM130.38,108.34h-16.02c2.2,0,4.09-.78,5.66-2.35s2.35-3.46,2.35-5.66v-44.07c0-2.2-.78-4.09-2.35-5.66-1.57-1.57-3.46-2.35-5.66-2.35H50.26c-2.2,0-4.09.78-5.66,2.35-1.57,1.57-2.35,3.46-2.35,5.66v44.07c0,2.2.78,4.09,2.35,5.66s3.46,2.35,5.66,2.35h-16.02c0,2.2.78,4.09,2.35,5.66,1.57,1.57,3.46,2.35,5.66,2.35h80.12c2.2,0,4.09-.78,5.66-2.35,1.57-1.57,2.35-3.46,2.35-5.66Z" }) })
|
|
2059
2141
|
}
|
|
2060
2142
|
)
|
|
2061
2143
|
),
|
|
2062
2144
|
DisabledImage: (
|
|
2063
2145
|
/* icon-laptop-disabled.svg */
|
|
2064
|
-
/* @__PURE__ */
|
|
2146
|
+
/* @__PURE__ */ o.jsx(
|
|
2065
2147
|
"svg",
|
|
2066
2148
|
{
|
|
2067
2149
|
className: e,
|
|
2068
2150
|
fill: "currentcolor",
|
|
2069
2151
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2070
2152
|
viewBox: "0 0 164.61 164.61",
|
|
2071
|
-
children: /* @__PURE__ */
|
|
2153
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM42.8,103.32c-.37-.92-.56-1.92-.56-2.99v-44.07c0-2.2.78-4.09,2.35-5.66,1.57-1.57,3.46-2.35,5.66-2.35h47.62l-8.01,8.01h-39.6v39.6l-7.45,7.45ZM120.01,105.99c1.57-1.57,2.35-3.46,2.35-5.66v-39.6l-8.01,8.01v31.59h-31.59l-16.02,16.02h55.63c2.2,0,4.09-.78,5.66-2.35,1.57-1.57,2.35-3.46,2.35-5.66h-16.02c2.2,0,4.09-.78,5.66-2.35ZM85.16,111.2c-.77.77-1.72,1.15-2.85,1.15s-2.09-.38-2.85-1.15-1.15-1.72-1.15-2.85.38-2.09,1.15-2.85,1.72-1.15,2.85-1.15,2.09.38,2.85,1.15,1.15,1.72,1.15,2.85-.38,2.09-1.15,2.85Z" }) })
|
|
2072
2154
|
}
|
|
2073
2155
|
)
|
|
2074
2156
|
),
|
|
2075
2157
|
EnabledImage: (
|
|
2076
2158
|
/* icon-laptop-enabled.svg */
|
|
2077
|
-
/* @__PURE__ */
|
|
2159
|
+
/* @__PURE__ */ o.jsx(
|
|
2078
2160
|
"svg",
|
|
2079
2161
|
{
|
|
2080
2162
|
className: e,
|
|
2081
2163
|
fill: "currentcolor",
|
|
2082
2164
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2083
2165
|
viewBox: "0 0 164.61 164.61",
|
|
2084
|
-
children: /* @__PURE__ */
|
|
2166
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M114.35,108.34c2.2,0,4.09-.78,5.66-2.35,1.57-1.57,2.35-3.46,2.35-5.66v-44.07c0-2.2-.78-4.09-2.35-5.66-1.57-1.57-3.46-2.35-5.66-2.35H50.26c-2.2,0-4.09.78-5.66,2.35-1.57,1.57-2.35,3.46-2.35,5.66v44.07c0,2.2.78,4.09,2.35,5.66,1.57,1.57,3.46,2.35,5.66,2.35h-16.02c0,2.2.78,4.09,2.35,5.66,1.57,1.57,3.46,2.35,5.66,2.35h80.12c2.2,0,4.09-.78,5.66-2.35,1.57-1.57,2.35-3.46,2.35-5.66h-16.02ZM50.26,56.26h64.1v44.07H50.26v-44.07ZM85.16,111.2c-.77.77-1.72,1.15-2.85,1.15s-2.09-.38-2.85-1.15-1.15-1.72-1.15-2.85.38-2.09,1.15-2.85,1.72-1.15,2.85-1.15,2.09.38,2.85,1.15,1.15,1.72,1.15,2.85-.38,2.09-1.15,2.85ZM82.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,159.61c-42.63,0-77.3-34.68-77.3-77.3S39.68,5,82.3,5s77.3,34.68,77.3,77.3-34.68,77.3-77.3,77.3Z" }) })
|
|
2085
2167
|
}
|
|
2086
2168
|
)
|
|
2087
2169
|
),
|
|
2088
2170
|
active: t,
|
|
2089
2171
|
disabled: s
|
|
2090
2172
|
}
|
|
2091
|
-
),
|
|
2173
|
+
), i8 = ({
|
|
2092
2174
|
active: t,
|
|
2093
2175
|
className: e = "",
|
|
2094
2176
|
disabled: s
|
|
2095
|
-
}) => /* @__PURE__ */
|
|
2096
|
-
|
|
2177
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2178
|
+
m,
|
|
2097
2179
|
{
|
|
2098
2180
|
ActiveImage: (
|
|
2099
2181
|
/* icon-left-active.svg */
|
|
2100
|
-
/* @__PURE__ */
|
|
2182
|
+
/* @__PURE__ */ o.jsx(
|
|
2101
2183
|
"svg",
|
|
2102
2184
|
{
|
|
2103
2185
|
className: e,
|
|
2104
2186
|
fill: "currentcolor",
|
|
2105
2187
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2106
2188
|
viewBox: "0 0 164.61 164.61",
|
|
2107
|
-
children: /* @__PURE__ */
|
|
2189
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM110.89,116.84l-10.84,12.15-40.12-35.78-12.23-10.91,12.23-10.91,40.12-35.78,10.84,12.15-38.72,34.53,38.72,34.53Z" }) })
|
|
2108
2190
|
}
|
|
2109
2191
|
)
|
|
2110
2192
|
),
|
|
2111
2193
|
DisabledImage: (
|
|
2112
2194
|
/* icon-left-disabled.svg */
|
|
2113
|
-
/* @__PURE__ */
|
|
2195
|
+
/* @__PURE__ */ o.jsx(
|
|
2114
2196
|
"svg",
|
|
2115
2197
|
{
|
|
2116
2198
|
className: e,
|
|
2117
2199
|
fill: "currentcolor",
|
|
2118
2200
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2119
2201
|
viewBox: "0 0 164.61 164.61",
|
|
2120
|
-
children: /* @__PURE__ */
|
|
2202
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M0,82.3c0,45.38,36.92,82.3,82.3,82.3,45.38,0,82.3-36.92,82.3-82.3C164.61,36.92,127.69,0,82.3,0,36.92,0,0,36.92,0,82.3ZM5,82.3c0-19.83,7.51-37.93,19.83-51.63l109.1,109.1c-13.7,12.32-31.8,19.82-51.63,19.82-42.63,0-77.3-34.68-77.3-77.3ZM159.61,82.3c0,19.83-7.51,37.93-19.83,51.63L30.68,24.82c13.7-12.32,31.8-19.82,51.63-19.82,42.63,0,77.3,34.68,77.3,77.3ZM71.36,52.88l17.11-15.26,10.84,12.15-16.41,14.64-11.53-11.53ZM99.31,118.84l-10.84,12.15-40.12-35.78-12.23-10.91,12.23-10.91,3.47-3.09,11.53,11.53-2.77,2.47,38.72,34.53Z" }) })
|
|
2121
2203
|
}
|
|
2122
2204
|
)
|
|
2123
2205
|
),
|
|
2124
2206
|
EnabledImage: (
|
|
2125
2207
|
/* icon-left-enabled.svg */
|
|
2126
|
-
/* @__PURE__ */
|
|
2208
|
+
/* @__PURE__ */ o.jsx(
|
|
2127
2209
|
"svg",
|
|
2128
2210
|
{
|
|
2129
2211
|
className: e,
|
|
2130
2212
|
fill: "currentcolor",
|
|
2131
2213
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2132
2214
|
viewBox: "0 0 164.61 164.61",
|
|
2133
|
-
children: /* @__PURE__ */
|
|
2215
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5ZM110.89,47.77l-10.84-12.15-40.12,35.78-12.23,10.91,12.23,10.91,40.12,35.78,10.84-12.15-38.72-34.53,38.72-34.53Z" }) })
|
|
2134
2216
|
}
|
|
2135
2217
|
)
|
|
2136
2218
|
),
|
|
2137
2219
|
active: t,
|
|
2138
2220
|
disabled: s
|
|
2139
2221
|
}
|
|
2140
|
-
),
|
|
2222
|
+
), a8 = ({
|
|
2141
2223
|
active: t,
|
|
2142
2224
|
className: e = "",
|
|
2143
2225
|
disabled: s
|
|
2144
|
-
}) => /* @__PURE__ */
|
|
2145
|
-
|
|
2226
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2227
|
+
m,
|
|
2146
2228
|
{
|
|
2147
2229
|
ActiveImage: (
|
|
2148
2230
|
/* icon-light-active.svg */
|
|
2149
|
-
/* @__PURE__ */
|
|
2231
|
+
/* @__PURE__ */ o.jsx(
|
|
2150
2232
|
"svg",
|
|
2151
2233
|
{
|
|
2152
2234
|
className: e,
|
|
2153
2235
|
fill: "currentcolor",
|
|
2154
2236
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2155
2237
|
viewBox: "0 0 164.61 164.61",
|
|
2156
|
-
children: /* @__PURE__ */
|
|
2238
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM89.7,131.59c-2.05,2.05-4.52,3.08-7.4,3.08s-5.35-1.03-7.4-3.08-3.08-4.52-3.08-7.4h20.95c0,2.88-1.03,5.35-3.08,7.4ZM103.25,118.96h-41.89v-10.47h41.89v10.47ZM116.28,88.85c-3.53,6.02-8.31,10.82-14.33,14.4h-39.27c-6.02-3.58-10.8-8.38-14.33-14.4-3.53-6.02-5.3-12.57-5.3-19.64,0-10.91,3.82-20.18,11.45-27.82,7.64-7.64,16.91-11.45,27.82-11.45s20.18,3.82,27.82,11.45c7.64,7.64,11.45,16.91,11.45,27.82,0,7.07-1.77,13.61-5.3,19.64Z" }) })
|
|
2157
2239
|
}
|
|
2158
2240
|
)
|
|
2159
2241
|
),
|
|
2160
2242
|
DisabledImage: (
|
|
2161
2243
|
/* icon-light-disabled.svg */
|
|
2162
|
-
/* @__PURE__ */
|
|
2244
|
+
/* @__PURE__ */ o.jsx(
|
|
2163
2245
|
"svg",
|
|
2164
2246
|
{
|
|
2165
2247
|
className: e,
|
|
2166
2248
|
fill: "currentcolor",
|
|
2167
2249
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2168
2250
|
viewBox: "0 0 164.61 164.61",
|
|
2169
|
-
children: /* @__PURE__ */
|
|
2251
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM71.83,124.2h20.95c0,2.88-1.03,5.35-3.08,7.4s-4.52,3.08-7.4,3.08-5.35-1.03-7.4-3.08-3.08-4.52-3.08-7.4ZM48.33,88.85c-3.53-6.02-5.3-12.57-5.3-19.64,0-10.91,3.82-20.18,11.45-27.82s16.91-11.45,27.82-11.45c9.6,0,17.94,2.96,25,8.88l-55.29,55.29c-1.34-1.64-2.58-3.38-3.68-5.26ZM74.6,108.49h28.65v10.47h-39.12l10.47-10.47ZM120.99,62.1c.39,2.29.59,4.65.59,7.11,0,7.07-1.77,13.61-5.3,19.64-3.53,6.02-8.31,10.82-14.33,14.4h-22.1l41.15-41.15Z" }) })
|
|
2170
2252
|
}
|
|
2171
2253
|
)
|
|
2172
2254
|
),
|
|
2173
2255
|
EnabledImage: (
|
|
2174
2256
|
/* icon-light-enabled.svg */
|
|
2175
|
-
/* @__PURE__ */
|
|
2257
|
+
/* @__PURE__ */ o.jsx(
|
|
2176
2258
|
"svg",
|
|
2177
2259
|
{
|
|
2178
2260
|
className: e,
|
|
2179
2261
|
fill: "currentcolor",
|
|
2180
2262
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2181
2263
|
viewBox: "0 0 164.61 164.61",
|
|
2182
|
-
children: /* @__PURE__ */
|
|
2264
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5ZM82.3,134.67c-2.88,0-5.35-1.03-7.4-3.08s-3.08-4.52-3.08-7.4h20.95c0,2.88-1.03,5.35-3.08,7.4s-4.52,3.08-7.4,3.08ZM61.36,118.96v-10.47h41.89v10.47h-41.89ZM62.67,103.25c-6.02-3.58-10.8-8.38-14.33-14.4-3.53-6.02-5.3-12.57-5.3-19.64,0-10.91,3.82-20.18,11.45-27.82,7.64-7.64,16.91-11.45,27.82-11.45s20.18,3.82,27.82,11.45c7.64,7.64,11.45,16.91,11.45,27.82,0,7.07-1.77,13.61-5.3,19.64-3.53,6.02-8.31,10.82-14.33,14.4h-39.27Z" }) })
|
|
2183
2265
|
}
|
|
2184
2266
|
)
|
|
2185
2267
|
),
|
|
2186
2268
|
active: t,
|
|
2187
2269
|
disabled: s
|
|
2188
2270
|
}
|
|
2189
|
-
),
|
|
2271
|
+
), u8 = ({
|
|
2190
2272
|
active: t,
|
|
2191
2273
|
className: e = "",
|
|
2192
2274
|
disabled: s
|
|
2193
|
-
}) => /* @__PURE__ */
|
|
2194
|
-
|
|
2275
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2276
|
+
m,
|
|
2195
2277
|
{
|
|
2196
2278
|
ActiveImage: (
|
|
2197
2279
|
/* icon-moon-active.svg */
|
|
2198
|
-
/* @__PURE__ */
|
|
2280
|
+
/* @__PURE__ */ o.jsx(
|
|
2199
2281
|
"svg",
|
|
2200
2282
|
{
|
|
2201
2283
|
className: e,
|
|
2202
2284
|
fill: "currentcolor",
|
|
2203
2285
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2204
2286
|
viewBox: "0 0 164.61 164.61",
|
|
2205
|
-
children: /* @__PURE__ */
|
|
2287
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM85.06,135.36c-29.3,0-53.06-23.75-53.06-53.06s23.75-53.06,53.06-53.06c13.44,0,25.71,5.01,35.06,13.25-4.36-1.53-9.05-2.38-13.94-2.38-23.23,0-42.05,18.83-42.05,42.05s18.83,42.05,42.05,42.05c5.07,0,9.92-.9,14.42-2.54-9.41,8.49-21.87,13.67-35.54,13.67Z" }) })
|
|
2206
2288
|
}
|
|
2207
2289
|
)
|
|
2208
2290
|
),
|
|
2209
2291
|
DisabledImage: (
|
|
2210
2292
|
/* icon-moon-disabled.svg */
|
|
2211
|
-
/* @__PURE__ */
|
|
2293
|
+
/* @__PURE__ */ o.jsx(
|
|
2212
2294
|
"svg",
|
|
2213
2295
|
{
|
|
2214
2296
|
className: e,
|
|
2215
2297
|
fill: "currentcolor",
|
|
2216
2298
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2217
2299
|
viewBox: "0 0 164.61 164.61",
|
|
2218
|
-
children: /* @__PURE__ */
|
|
2300
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM42.48,103.64c-2.87-6.53-4.48-13.74-4.48-21.34,0-29.3,23.75-53.06,53.06-53.06,7.59,0,14.81,1.6,21.34,4.48l-6.94,6.94c-17.84,2.87-31.92,16.95-34.79,34.79l-28.19,28.19ZM112.18,124.23c5.07,0,9.92-.9,14.42-2.54-9.41,8.49-21.87,13.67-35.54,13.67-12.17,0-23.38-4.11-32.33-11l18.62-18.62c7.56,11.16,20.34,18.49,34.84,18.49Z" }) })
|
|
2219
2301
|
}
|
|
2220
2302
|
)
|
|
2221
2303
|
),
|
|
2222
2304
|
EnabledImage: (
|
|
2223
2305
|
/* icon-moon-enabled.svg */
|
|
2224
|
-
/* @__PURE__ */
|
|
2306
|
+
/* @__PURE__ */ o.jsx(
|
|
2225
2307
|
"svg",
|
|
2226
2308
|
{
|
|
2227
2309
|
className: e,
|
|
2228
2310
|
fill: "currentcolor",
|
|
2229
2311
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2230
2312
|
viewBox: "0 0 164.61 164.61",
|
|
2231
|
-
children: /* @__PURE__ */
|
|
2313
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5ZM106.74,123.91c-23.23,0-42.05-18.83-42.05-42.05s18.83-42.05,42.05-42.05c4.89,0,9.58.84,13.94,2.38-9.35-8.24-21.62-13.25-35.06-13.25-29.3,0-53.06,23.75-53.06,53.06s23.75,53.06,53.06,53.06c13.67,0,26.14-5.17,35.54-13.67-4.5,1.64-9.35,2.54-14.42,2.54Z" }) })
|
|
2232
2314
|
}
|
|
2233
2315
|
)
|
|
2234
2316
|
),
|
|
2235
2317
|
active: t,
|
|
2236
2318
|
disabled: s
|
|
2237
2319
|
}
|
|
2238
|
-
),
|
|
2320
|
+
), d8 = ({
|
|
2239
2321
|
active: t,
|
|
2240
2322
|
className: e = "",
|
|
2241
2323
|
disabled: s
|
|
2242
|
-
}) => /* @__PURE__ */
|
|
2243
|
-
|
|
2324
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2325
|
+
m,
|
|
2244
2326
|
{
|
|
2245
2327
|
ActiveImage: (
|
|
2246
2328
|
/* icon-playstation-active.svg */
|
|
2247
|
-
/* @__PURE__ */
|
|
2329
|
+
/* @__PURE__ */ o.jsx("svg", { className: e, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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" }) }) })
|
|
2248
2330
|
),
|
|
2249
2331
|
DisabledImage: (
|
|
2250
2332
|
/* icon-playstation-disabled.svg */
|
|
2251
|
-
/* @__PURE__ */
|
|
2333
|
+
/* @__PURE__ */ o.jsx("svg", { className: e, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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" }) }) })
|
|
2252
2334
|
),
|
|
2253
2335
|
EnabledImage: (
|
|
2254
2336
|
/* icon-playstation-enabled.svg */
|
|
2255
|
-
/* @__PURE__ */
|
|
2337
|
+
/* @__PURE__ */ o.jsx("svg", { className: e, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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" }) }) })
|
|
2256
2338
|
),
|
|
2257
2339
|
active: t,
|
|
2258
2340
|
disabled: s
|
|
2259
2341
|
}
|
|
2260
|
-
),
|
|
2342
|
+
), h8 = ({
|
|
2261
2343
|
active: t,
|
|
2262
2344
|
className: e = "",
|
|
2263
2345
|
disabled: s
|
|
2264
|
-
}) => /* @__PURE__ */
|
|
2265
|
-
|
|
2346
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2347
|
+
m,
|
|
2266
2348
|
{
|
|
2267
2349
|
ActiveImage: (
|
|
2268
2350
|
/* icon-podium-active.svg */
|
|
2269
|
-
/* @__PURE__ */
|
|
2351
|
+
/* @__PURE__ */ o.jsx(
|
|
2270
2352
|
"svg",
|
|
2271
2353
|
{
|
|
2272
2354
|
className: e,
|
|
2273
2355
|
fill: "currentcolor",
|
|
2274
2356
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2275
2357
|
viewBox: "0 0 164.61 164.61",
|
|
2276
|
-
children: /* @__PURE__ */
|
|
2358
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M46.28,72.89h72.05c-.45,2.69-.83,5.38-1.14,8.07-.31,2.69-.69,5.38-1.14,8.07h-8.13c.06-2.69-.86-5.09-2.76-7.19-2.15-2.37-4.79-3.56-7.93-3.56h-29.84c-3.14,0-5.78,1.19-7.93,3.56-1.9,2.1-2.82,4.5-2.76,7.19h-8.13c-.45-2.69-.83-5.38-1.14-8.07-.31-2.69-.69-5.38-1.14-8.07ZM70.34,121.29h23.93l3.09-32.26h-30.11l3.09,32.26ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM130.69,62.14H60.93c0-2.24.65-4.3,1.95-6.18,1.3-1.88,3.02-3.18,5.18-3.9.99.72,1.97,1.23,2.96,1.55.99.31,2.06.47,3.23.47,2.96,0,5.49-1.05,7.59-3.16,2.11-2.11,3.16-4.64,3.16-7.59s-1.05-5.49-3.16-7.59-4.64-3.16-7.59-3.16c-2.78,0-5.2.92-7.26,2.76-2.06,1.84-3.23,4.14-3.49,6.92-4.12,1.7-7.39,4.35-9.81,7.93-2.42,3.58-3.63,7.57-3.63,11.96h-16.13l5.38,37.64h18.4l3.1,32.26h43.01l3.1-32.26h18.4l5.38-37.64Z" }) })
|
|
2277
2359
|
}
|
|
2278
2360
|
)
|
|
2279
2361
|
),
|
|
2280
2362
|
DisabledImage: (
|
|
2281
2363
|
/* icon-podium-disabled.svg */
|
|
2282
|
-
/* @__PURE__ */
|
|
2364
|
+
/* @__PURE__ */ o.jsx(
|
|
2283
2365
|
"svg",
|
|
2284
2366
|
{
|
|
2285
2367
|
className: e,
|
|
2286
2368
|
fill: "currentcolor",
|
|
2287
2369
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2288
2370
|
viewBox: "0 0 164.61 164.61",
|
|
2289
|
-
children: /* @__PURE__ */
|
|
2371
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM39.29,99.78l-5.38-37.64h16.13c0-4.39,1.21-8.38,3.63-11.96s5.69-6.23,9.81-7.93c.27-2.78,1.43-5.09,3.49-6.92,2.06-1.84,4.48-2.76,7.26-2.76,2.96,0,5.49,1.05,7.59,3.16,2.11,2.11,3.16,4.64,3.16,7.59s-1.05,5.49-3.16,7.59c-2.11,2.11-4.64,3.16-7.59,3.16-1.16,0-2.24-.16-3.23-.47-.99-.31-1.97-.83-2.96-1.55-2.15.72-3.88,2.02-5.18,3.9-1.3,1.88-1.95,3.94-1.95,6.18h23.05l-10.75,10.75h-26.95c.45,2.69.83,5.38,1.14,8.07s.69,5.38,1.14,8.07h8.13c-.06-2.69.86-5.09,2.76-7.19,2.15-2.37,4.79-3.56,7.93-3.56h.47l-21.51,21.51h-7.06ZM120.95,62.14h9.74l-5.38,37.64h-18.4l-3.1,32.26h-43.01l-.85-8.89,9.65-9.65.75,7.79h23.93l3.09-32.26h-3.29l9-9c.74.5,1.44,1.09,2.09,1.81,1.9,2.1,2.82,4.5,2.76,7.19h8.13c.45-2.69.83-5.38,1.14-8.07s.69-5.38,1.14-8.07h-8.13l10.75-10.75Z" }) })
|
|
2290
2372
|
}
|
|
2291
2373
|
)
|
|
2292
2374
|
),
|
|
2293
2375
|
EnabledImage: (
|
|
2294
2376
|
/* icon-podium-enabled.svg */
|
|
2295
|
-
/* @__PURE__ */
|
|
2377
|
+
/* @__PURE__ */ o.jsx(
|
|
2296
2378
|
"svg",
|
|
2297
2379
|
{
|
|
2298
2380
|
className: e,
|
|
2299
2381
|
fill: "currentcolor",
|
|
2300
2382
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2301
2383
|
viewBox: "0 0 164.61 164.61",
|
|
2302
|
-
children: /* @__PURE__ */
|
|
2384
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5ZM130.69,62.14H60.93c0-2.24.65-4.3,1.95-6.18,1.3-1.88,3.02-3.18,5.18-3.9.99.72,1.97,1.23,2.96,1.55.99.31,2.06.47,3.23.47,2.96,0,5.49-1.05,7.59-3.16s3.16-4.64,3.16-7.59-1.05-5.49-3.16-7.59c-2.11-2.11-4.64-3.16-7.59-3.16-2.78,0-5.2.92-7.26,2.76-2.06,1.84-3.23,4.14-3.49,6.92-4.12,1.7-7.39,4.35-9.81,7.93-2.42,3.58-3.63,7.57-3.63,11.96h-16.13l5.38,37.64h18.4l3.1,32.26h43.01l3.1-32.26h18.4l5.38-37.64ZM94.27,121.29h-23.93l-3.09-32.26h30.11l-3.09,32.26ZM117.19,80.96c-.31,2.69-.69,5.38-1.14,8.07h-8.13c.06-2.69-.86-5.09-2.76-7.19-2.15-2.37-4.79-3.56-7.93-3.56h-29.84c-3.14,0-5.78,1.19-7.93,3.56-1.9,2.1-2.82,4.5-2.76,7.19h-8.13c-.45-2.69-.83-5.38-1.14-8.07s-.69-5.38-1.14-8.07h72.05c-.45,2.69-.83,5.38-1.14,8.07Z" }) })
|
|
2303
2385
|
}
|
|
2304
2386
|
)
|
|
2305
2387
|
),
|
|
2306
2388
|
active: t,
|
|
2307
2389
|
disabled: s
|
|
2308
2390
|
}
|
|
2309
|
-
),
|
|
2391
|
+
), v8 = ({
|
|
2310
2392
|
active: t,
|
|
2311
2393
|
className: e = "",
|
|
2312
2394
|
disabled: s
|
|
2313
|
-
}) => /* @__PURE__ */
|
|
2314
|
-
|
|
2395
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2396
|
+
m,
|
|
2315
2397
|
{
|
|
2316
2398
|
ActiveImage: (
|
|
2317
2399
|
/* icon-power-active.svg */
|
|
2318
|
-
/* @__PURE__ */
|
|
2400
|
+
/* @__PURE__ */ o.jsx(
|
|
2319
2401
|
"svg",
|
|
2320
2402
|
{
|
|
2321
2403
|
className: e,
|
|
2322
2404
|
fill: "currentcolor",
|
|
2323
2405
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2324
2406
|
viewBox: "0 0 164.61 164.61",
|
|
2325
|
-
children: /* @__PURE__ */
|
|
2407
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM76.51,30.2h11.58v57.9h-11.58V30.2ZM130.29,102.5c-2.75,6.32-6.47,11.84-11.15,16.57-4.68,4.73-10.18,8.47-16.5,11.22-6.32,2.75-13.1,4.13-20.34,4.13s-13.87-1.38-20.19-4.13c-6.32-2.75-11.84-6.49-16.57-11.22-4.73-4.73-8.47-10.25-11.22-16.57-2.75-6.32-4.13-13.05-4.13-20.19,0-7.72,1.59-15,4.78-21.86,3.18-6.85,7.67-12.79,13.46-17.8l8.11,8.11c-4.63,3.86-8.25,8.54-10.86,14.04-2.61,5.5-3.91,11.34-3.91,17.51,0,11.19,3.96,20.75,11.87,28.66s17.47,11.87,28.66,11.87,20.87-3.96,28.73-11.87c7.86-7.91,11.8-17.47,11.8-28.66,0-6.18-1.28-12.01-3.84-17.51-2.56-5.5-6.2-10.18-10.93-14.04l8.11-8.11c5.79,5.02,10.28,10.95,13.46,17.8,3.18,6.85,4.78,14.14,4.78,21.86,0,7.14-1.38,13.87-4.13,20.19Z" }) })
|
|
2326
2408
|
}
|
|
2327
2409
|
)
|
|
2328
2410
|
),
|
|
2329
2411
|
DisabledImage: (
|
|
2330
2412
|
/* icon-power-disabled.svg */
|
|
2331
|
-
/* @__PURE__ */
|
|
2413
|
+
/* @__PURE__ */ o.jsx(
|
|
2332
2414
|
"svg",
|
|
2333
2415
|
{
|
|
2334
2416
|
className: e,
|
|
2335
2417
|
fill: "currentcolor",
|
|
2336
2418
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2337
2419
|
viewBox: "0 0 164.61 164.61",
|
|
2338
|
-
children: /* @__PURE__ */
|
|
2420
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5c18.35,0,35.21,6.44,48.48,17.15L22.15,130.79c-10.72-13.27-17.15-30.14-17.15-48.48C5,39.68,39.68,5,82.3,5ZM82.3,159.61c-21.3,0-40.62-8.66-54.62-22.65L136.96,27.69c13.99,14,22.65,33.31,22.65,54.62,0,42.63-34.68,77.3-77.3,77.3ZM88.09,100.79h-11.58v-5.21l11.58-11.58v16.79ZM88.09,57.4l-11.58,11.58V30.2h11.58v27.21ZM129.63,60.45c3.18,6.85,4.78,14.14,4.78,21.86,0,7.14-1.38,13.87-4.13,20.19-2.75,6.32-6.47,11.84-11.15,16.57-4.68,4.73-10.18,8.47-16.5,11.22-6.32,2.75-13.1,4.13-20.34,4.13s-13.87-1.38-20.19-4.13c-4.64-2.02-8.85-4.58-12.64-7.67l8.14-8.14c7.08,5.56,15.31,8.35,24.69,8.35,11.29,0,20.87-3.96,28.73-11.87,7.86-7.91,11.8-17.47,11.8-28.66,0-6.18-1.28-12.01-3.84-17.51-1.22-2.62-2.69-5.05-4.4-7.3l8.11-8.11c2.75,3.38,5.07,7.06,6.93,11.06ZM34.32,102.5c-2.75-6.32-4.13-13.05-4.13-20.19,0-7.72,1.59-15,4.78-21.86,3.18-6.85,7.67-12.79,13.46-17.8l8.11,8.11c-4.63,3.86-8.25,8.54-10.86,14.04s-3.91,11.34-3.91,17.51,1.29,12.23,3.87,17.55l-8.4,8.4c-1.07-1.84-2.05-3.75-2.92-5.76Z" }) })
|
|
2339
2421
|
}
|
|
2340
2422
|
)
|
|
2341
2423
|
),
|
|
2342
2424
|
EnabledImage: (
|
|
2343
2425
|
/* icon-power-enabled.svg */
|
|
2344
|
-
/* @__PURE__ */
|
|
2426
|
+
/* @__PURE__ */ o.jsx(
|
|
2345
2427
|
"svg",
|
|
2346
2428
|
{
|
|
2347
2429
|
className: e,
|
|
2348
2430
|
fill: "currentcolor",
|
|
2349
2431
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2350
2432
|
viewBox: "0 0 164.61 164.61",
|
|
2351
|
-
children: /* @__PURE__ */
|
|
2433
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M76.51,88.09V30.2h11.58v57.9h-11.58ZM82.3,134.41c-7.14,0-13.87-1.38-20.19-4.13s-11.84-6.49-16.57-11.22c-4.73-4.73-8.47-10.25-11.22-16.57s-4.13-13.05-4.13-20.19c0-7.72,1.59-15,4.78-21.86s7.67-12.79,13.46-17.8l8.11,8.11c-4.63,3.86-8.25,8.54-10.86,14.04s-3.91,11.34-3.91,17.51c0,11.19,3.96,20.75,11.87,28.66,7.91,7.91,17.47,11.87,28.66,11.87s20.87-3.96,28.73-11.87c7.86-7.91,11.8-17.47,11.8-28.66,0-6.18-1.28-12.01-3.84-17.51-2.56-5.5-6.2-10.18-10.93-14.04l8.11-8.11c5.79,5.02,10.28,10.95,13.46,17.8s4.78,14.14,4.78,21.86c0,7.14-1.38,13.87-4.13,20.19s-6.47,11.84-11.15,16.57c-4.68,4.73-10.18,8.47-16.5,11.22s-13.1,4.13-20.34,4.13ZM82.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" }) })
|
|
2352
2434
|
}
|
|
2353
2435
|
)
|
|
2354
2436
|
),
|
|
2355
2437
|
active: t,
|
|
2356
2438
|
disabled: s
|
|
2357
2439
|
}
|
|
2358
|
-
),
|
|
2440
|
+
), g8 = ({
|
|
2359
2441
|
active: t,
|
|
2360
2442
|
className: e = "",
|
|
2361
2443
|
disabled: s
|
|
2362
|
-
}) => /* @__PURE__ */
|
|
2363
|
-
|
|
2444
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2445
|
+
m,
|
|
2364
2446
|
{
|
|
2365
2447
|
ActiveImage: (
|
|
2366
2448
|
/* icon-privacy-active.svg */
|
|
2367
|
-
/* @__PURE__ */
|
|
2449
|
+
/* @__PURE__ */ o.jsx(
|
|
2368
2450
|
"svg",
|
|
2369
2451
|
{
|
|
2370
2452
|
className: e,
|
|
2371
2453
|
fill: "currentcolor",
|
|
2372
2454
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2373
2455
|
viewBox: "0 0 164.61 164.61",
|
|
2374
|
-
children: /* @__PURE__ */
|
|
2456
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M143.32,27.14L27.14,143.32c14.61,13.22,33.96,21.28,55.17,21.28,45.38,0,82.3-36.92,82.3-82.3,0-21.21-8.06-40.56-21.28-55.17ZM99.14,83.96c-.75,2.91-2.24,5.51-4.5,7.78-2.26,2.26-4.86,3.75-7.78,4.5l12.28-12.28ZM113.05,106.09c-6.58,7.64-14.89,12.14-24.95,13.49v17.84h-11.6v-17.84c-3.65-.49-7.07-1.4-10.27-2.72l9.2-9.2c2.18.5,4.47.76,6.86.76,8.03,0,14.87-2.83,20.52-8.49s8.49-12.5,8.49-20.52h11.6c0,10.15-3.29,19.05-9.86,26.69ZM137.47,21.28C122.86,8.06,103.51,0,82.3,0,36.92,0,0,36.92,0,82.3c0,21.21,8.06,40.56,21.28,55.17L137.47,21.28ZM64.9,44.59c0-4.83,1.69-8.94,5.08-12.33,3.38-3.38,7.49-5.08,12.33-5.08s8.94,1.69,12.33,5.08c3.38,3.38,5.08,7.49,5.08,12.33v1.82l-34.73,34.73c-.05-.57-.08-1.15-.08-1.74v-34.81ZM53.29,79.4c0,4.06.72,7.81,2.17,11.26l-8.67,8.67c-3.39-6-5.1-12.64-5.1-19.93h11.6Z" }) })
|
|
2375
2457
|
}
|
|
2376
2458
|
)
|
|
2377
2459
|
),
|
|
2378
2460
|
DisabledImage: (
|
|
2379
2461
|
/* icon-privacy-disabled.svg */
|
|
2380
|
-
/* @__PURE__ */
|
|
2462
|
+
/* @__PURE__ */ o.jsx(
|
|
2381
2463
|
"svg",
|
|
2382
2464
|
{
|
|
2383
2465
|
className: e,
|
|
2384
2466
|
fill: "currentcolor",
|
|
2385
2467
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2386
2468
|
viewBox: "0 0 164.61 164.61",
|
|
2387
|
-
children: /* @__PURE__ */
|
|
2469
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM82.3,5c19.83,0,37.93,7.51,51.63,19.83L24.82,133.93c-12.32-13.7-19.82-31.8-19.82-51.63C5,39.68,39.68,5,82.3,5ZM82.3,159.61c-19.83,0-37.93-7.51-51.63-19.83L139.78,30.68c12.32,13.7,19.83,31.8,19.83,51.63,0,42.63-34.68,77.3-77.3,77.3ZM94.63,91.73c-2.26,2.26-4.86,3.75-7.78,4.5l12.28-12.28c-.75,2.91-2.24,5.51-4.5,7.78ZM64.98,81.15c-.05-.57-.08-1.15-.08-1.74v-34.81c0-4.83,1.69-8.94,5.08-12.33s7.49-5.08,12.33-5.08,8.94,1.69,12.33,5.08,5.08,7.49,5.08,12.33v1.82l-34.73,34.73ZM111.31,79.4h11.6c0,10.15-3.29,19.05-9.86,26.69-6.58,7.64-14.89,12.14-24.95,13.49v17.84h-11.6v-17.84c-3.65-.49-7.07-1.4-10.27-2.72l9.2-9.2c2.18.5,4.47.76,6.86.76,8.03,0,14.87-2.83,20.52-8.49s8.49-12.5,8.49-20.52ZM46.79,99.33c-3.39-6-5.1-12.64-5.1-19.93h11.6c0,4.06.72,7.81,2.17,11.26l-8.67,8.67Z" }) })
|
|
2388
2470
|
}
|
|
2389
2471
|
)
|
|
2390
2472
|
),
|
|
2391
2473
|
EnabledImage: (
|
|
2392
2474
|
/* icon-privacy-enabled.svg */
|
|
2393
|
-
/* @__PURE__ */
|
|
2475
|
+
/* @__PURE__ */ o.jsx(
|
|
2394
2476
|
"svg",
|
|
2395
2477
|
{
|
|
2396
2478
|
className: e,
|
|
2397
2479
|
fill: "currentcolor",
|
|
2398
2480
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2399
2481
|
viewBox: "0 0 164.61 164.61",
|
|
2400
|
-
children: /* @__PURE__ */
|
|
2482
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM82.3,5c19.83,0,37.93,7.51,51.63,19.83L24.82,133.93c-12.32-13.7-19.82-31.8-19.82-51.63C5,39.68,39.68,5,82.3,5ZM82.3,159.61c-19.83,0-37.93-7.51-51.63-19.83L139.78,30.68c12.32,13.7,19.83,31.8,19.83,51.63,0,42.63-34.68,77.3-77.3,77.3ZM94.63,91.73c-2.26,2.26-4.86,3.75-7.78,4.5l12.28-12.28c-.75,2.91-2.24,5.51-4.5,7.78ZM64.98,81.15c-.05-.57-.08-1.15-.08-1.74v-34.81c0-4.83,1.69-8.94,5.08-12.33s7.49-5.08,12.33-5.08,8.94,1.69,12.33,5.08,5.08,7.49,5.08,12.33v1.82l-34.73,34.73ZM111.31,79.4h11.6c0,10.15-3.29,19.05-9.86,26.69-6.58,7.64-14.89,12.14-24.95,13.49v17.84h-11.6v-17.84c-3.65-.49-7.07-1.4-10.27-2.72l9.2-9.2c2.18.5,4.47.76,6.86.76,8.03,0,14.87-2.83,20.52-8.49s8.49-12.5,8.49-20.52ZM46.79,99.33c-3.39-6-5.1-12.64-5.1-19.93h11.6c0,4.06.72,7.81,2.17,11.26l-8.67,8.67Z" }) })
|
|
2401
2483
|
}
|
|
2402
2484
|
)
|
|
2403
2485
|
),
|
|
2404
2486
|
active: t,
|
|
2405
2487
|
disabled: s
|
|
2406
2488
|
}
|
|
2407
|
-
),
|
|
2489
|
+
), f8 = ({
|
|
2408
2490
|
active: t,
|
|
2409
2491
|
className: e = "",
|
|
2410
2492
|
disabled: s
|
|
2411
|
-
}) => /* @__PURE__ */
|
|
2412
|
-
|
|
2493
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2494
|
+
m,
|
|
2413
2495
|
{
|
|
2414
2496
|
ActiveImage: (
|
|
2415
2497
|
/* icon-question-active.svg */
|
|
2416
|
-
/* @__PURE__ */
|
|
2498
|
+
/* @__PURE__ */ o.jsx(
|
|
2417
2499
|
"svg",
|
|
2418
2500
|
{
|
|
2419
2501
|
className: e,
|
|
2420
2502
|
fill: "currentcolor",
|
|
2421
2503
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2422
2504
|
viewBox: "0 0 164.61 164.61",
|
|
2423
|
-
children: /* @__PURE__ */
|
|
2505
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM94.03,138.27h-22.4v-21.73h22.4v21.73ZM115.53,74.97c-1.91,2.71-5.56,6.16-10.98,10.38l-5.34,4.13c-2.91,2.25-4.84,4.88-5.79,7.89-.6,1.91-.93,4.86-.98,8.87h-20.3c.3-8.47,1.1-14.32,2.41-17.55,1.3-3.23,4.66-6.95,10.07-11.16l5.49-4.28c1.8-1.35,3.26-2.83,4.36-4.44,2-2.76,3.01-5.79,3.01-9.1,0-3.81-1.12-7.28-3.35-10.41-2.23-3.13-6.3-4.7-12.22-4.7s-9.94,1.93-12.37,5.79c-2.43,3.86-3.65,7.87-3.65,12.03h-21.73c.6-14.28,5.59-24.41,14.96-30.37,5.91-3.81,13.18-5.71,21.8-5.71,11.33,0,20.74,2.71,28.23,8.12,7.49,5.41,11.24,13.43,11.24,24.06,0,6.52-1.63,12-4.89,16.46Z" }) })
|
|
2424
2506
|
}
|
|
2425
2507
|
)
|
|
2426
2508
|
),
|
|
2427
2509
|
DisabledImage: (
|
|
2428
2510
|
/* icon-question-disabled.svg */
|
|
2429
|
-
/* @__PURE__ */
|
|
2511
|
+
/* @__PURE__ */ o.jsx(
|
|
2430
2512
|
"svg",
|
|
2431
2513
|
{
|
|
2432
2514
|
className: e,
|
|
2433
2515
|
fill: "currentcolor",
|
|
2434
2516
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2435
2517
|
viewBox: "0 0 164.61 164.61",
|
|
2436
|
-
children: /* @__PURE__ */
|
|
2518
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM65.92,62.42h-21.73c.6-14.28,5.59-24.41,14.96-30.37,5.91-3.81,13.18-5.71,21.8-5.71,11.33,0,20.74,2.71,28.23,8.12.48.35.95.71,1.41,1.08l-15.41,15.41c-.32-.56-.65-1.11-1.04-1.64-2.23-3.13-6.3-4.7-12.22-4.7s-9.94,1.93-12.37,5.79c-2.43,3.86-3.65,7.87-3.65,12.03ZM71.63,116.55h22.4v21.73h-22.4v-21.73ZM120.14,62.95c-.59,4.6-2.12,8.62-4.61,12.02-1.91,2.71-5.56,6.16-10.98,10.38l-5.34,4.13c-2.91,2.25-4.84,4.88-5.79,7.89-.6,1.91-.93,4.86-.98,8.87h-15.61l43.3-43.3Z" }) })
|
|
2437
2519
|
}
|
|
2438
2520
|
)
|
|
2439
2521
|
),
|
|
2440
2522
|
EnabledImage: (
|
|
2441
2523
|
/* icon-question-enabled.svg */
|
|
2442
|
-
/* @__PURE__ */
|
|
2524
|
+
/* @__PURE__ */ o.jsx(
|
|
2443
2525
|
"svg",
|
|
2444
2526
|
{
|
|
2445
2527
|
className: e,
|
|
2446
2528
|
fill: "currentcolor",
|
|
2447
2529
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2448
2530
|
viewBox: "0 0 164.61 164.61",
|
|
2449
|
-
children: /* @__PURE__ */
|
|
2531
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5ZM93.43,97.38c-.6,1.91-.93,4.86-.98,8.87h-20.3c.3-8.47,1.1-14.32,2.41-17.55,1.3-3.23,4.66-6.95,10.07-11.16l5.49-4.28c1.8-1.35,3.26-2.83,4.36-4.44,2-2.76,3.01-5.79,3.01-9.1,0-3.81-1.12-7.28-3.35-10.41-2.23-3.13-6.3-4.7-12.22-4.7s-9.94,1.93-12.37,5.79c-2.43,3.86-3.65,7.87-3.65,12.03h-21.73c.6-14.28,5.59-24.41,14.96-30.37,5.91-3.81,13.18-5.71,21.8-5.71,11.33,0,20.74,2.71,28.23,8.12,7.49,5.41,11.24,13.43,11.24,24.06,0,6.52-1.63,12-4.89,16.46-1.91,2.71-5.56,6.16-10.98,10.38l-5.34,4.13c-2.91,2.25-4.84,4.88-5.79,7.89ZM94.03,138.27h-22.4v-21.73h22.4v21.73Z" }) })
|
|
2450
2532
|
}
|
|
2451
2533
|
)
|
|
2452
2534
|
),
|
|
2453
2535
|
active: t,
|
|
2454
2536
|
disabled: s
|
|
2455
2537
|
}
|
|
2456
|
-
),
|
|
2538
|
+
), w8 = ({
|
|
2457
2539
|
active: t,
|
|
2458
2540
|
className: e = "",
|
|
2459
2541
|
disabled: s
|
|
2460
|
-
}) => /* @__PURE__ */
|
|
2461
|
-
|
|
2542
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2543
|
+
m,
|
|
2462
2544
|
{
|
|
2463
2545
|
ActiveImage: (
|
|
2464
2546
|
/* icon-right-active.svg */
|
|
2465
|
-
/* @__PURE__ */
|
|
2547
|
+
/* @__PURE__ */ o.jsx(
|
|
2466
2548
|
"svg",
|
|
2467
2549
|
{
|
|
2468
2550
|
className: e,
|
|
2469
2551
|
fill: "currentcolor",
|
|
2470
2552
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2471
2553
|
viewBox: "0 0 164.61 164.61",
|
|
2472
|
-
children: /* @__PURE__ */
|
|
2554
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM107.67,93.21l-40.12,35.78-10.84-12.15,38.72-34.53-38.72-34.53,10.84-12.15,40.12,35.78,12.23,10.91-12.23,10.91Z" }) })
|
|
2473
2555
|
}
|
|
2474
2556
|
)
|
|
2475
2557
|
),
|
|
2476
2558
|
DisabledImage: (
|
|
2477
2559
|
/* icon-right-disabled.svg */
|
|
2478
|
-
/* @__PURE__ */
|
|
2560
|
+
/* @__PURE__ */ o.jsx(
|
|
2479
2561
|
"svg",
|
|
2480
2562
|
{
|
|
2481
2563
|
className: e,
|
|
2482
2564
|
fill: "currentcolor",
|
|
2483
2565
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2484
2566
|
viewBox: "0 0 164.61 164.61",
|
|
2485
|
-
children: /* @__PURE__ */
|
|
2567
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M164.61,82.3C164.61,36.92,127.69,0,82.3,0S0,36.92,0,82.3c0,45.38,36.92,82.3,82.3,82.3,45.38,0,82.3-36.92,82.3-82.3ZM159.61,82.3c0,19.83-7.51,37.93-19.83,51.63L30.68,24.82c13.7-12.32,31.8-19.82,51.63-19.82,42.63,0,77.3,34.68,77.3,77.3ZM5,82.3c0-19.83,7.51-37.93,19.83-51.63l109.1,109.1c-13.7,12.32-31.8,19.82-51.63,19.82-42.63,0-77.3-34.68-77.3-77.3ZM93.25,111.73l-17.11,15.26-10.84-12.15,16.41-14.64,11.53,11.53ZM65.3,45.77l10.84-12.15,40.12,35.78,12.23,10.91-12.23,10.91-3.47,3.09-11.53-11.53,2.77-2.47-38.72-34.53Z" }) })
|
|
2486
2568
|
}
|
|
2487
2569
|
)
|
|
2488
2570
|
),
|
|
2489
2571
|
EnabledImage: (
|
|
2490
2572
|
/* icon-right-enabled.svg */
|
|
2491
|
-
/* @__PURE__ */
|
|
2573
|
+
/* @__PURE__ */ o.jsx(
|
|
2492
2574
|
"svg",
|
|
2493
2575
|
{
|
|
2494
2576
|
className: e,
|
|
2495
2577
|
fill: "currentcolor",
|
|
2496
2578
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2497
2579
|
viewBox: "0 0 164.61 164.61",
|
|
2498
|
-
children: /* @__PURE__ */
|
|
2580
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5ZM95.44,82.3l-38.72,34.53,10.84,12.15,40.12-35.78,12.23-10.91-12.23-10.91-40.12-35.78-10.84,12.15,38.72,34.53Z" }) })
|
|
2499
2581
|
}
|
|
2500
2582
|
)
|
|
2501
2583
|
),
|
|
2502
2584
|
active: t,
|
|
2503
2585
|
disabled: s
|
|
2504
2586
|
}
|
|
2505
|
-
),
|
|
2587
|
+
), p8 = ({
|
|
2506
2588
|
active: t,
|
|
2507
2589
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
2508
2590
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
2509
2591
|
className: e = "",
|
|
2510
2592
|
disabled: s
|
|
2511
|
-
}) => /* @__PURE__ */
|
|
2512
|
-
|
|
2593
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2594
|
+
m,
|
|
2513
2595
|
{
|
|
2514
2596
|
ActiveImage: (
|
|
2515
2597
|
/* icon-roomPC-active.svg */
|
|
2516
|
-
/* @__PURE__ */
|
|
2598
|
+
/* @__PURE__ */ o.jsx(
|
|
2517
2599
|
"svg",
|
|
2518
2600
|
{
|
|
2519
2601
|
className: e,
|
|
2520
2602
|
fill: "currentcolor",
|
|
2521
2603
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2522
2604
|
viewBox: "0 0 164.61 164.61",
|
|
2523
|
-
children: /* @__PURE__ */
|
|
2605
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx(
|
|
2524
2606
|
"path",
|
|
2525
2607
|
{
|
|
2526
2608
|
d: "M78.42,76.11v.67c0,1.66-1.34,3-3,3h-28.5c-1.66,0-3-1.34-3-3v-.67c0-1.66,1.34-3,3-3h28.5c1.66,0,3,1.34,3,3ZM75.42,63.11h-28.5c-1.66,0-3,1.34-3,3v.67c0,1.66,1.34,3,3,3h28.5c1.66,0,3-1.34,3-3v-.67c0-1.66-1.34-3-3-3ZM74.67,110.78c-2.07,0-3.75,1.68-3.75,3.75s1.68,3.75,3.75,3.75,3.75-1.68,3.75-3.75-1.68-3.75-3.75-3.75ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM82.63,60.68c0-2.15-1.74-3.89-3.89-3.89h-34.83c-2.15,0-3.89,1.74-3.89,3.89v59.64c0,2.15,1.74,3.89,3.89,3.89h34.83c2.15,0,3.89-1.74,3.89-3.89v-59.64ZM124.59,44.82c0-2.44-1.98-4.43-4.43-4.43H54.78c-2.44,0-4.43,1.98-4.43,4.43v6.96h6.06v-1.66c0-1.47,1.19-2.66,2.66-2.66h56.8c1.47,0,2.66,1.19,2.66,2.66v32.53c0,1.47-1.19,2.66-2.66,2.66h-28.24v20.48h21.98c0-4.6-5.41-11.57-13.23-13.41h23.77c2.44,0,4.43-1.98,4.43-4.43v-43.13Z",
|
|
@@ -2532,14 +2614,14 @@ const O6 = () => {
|
|
|
2532
2614
|
),
|
|
2533
2615
|
DisabledImage: (
|
|
2534
2616
|
/* icon-roomPC-disabled.svg */
|
|
2535
|
-
/* @__PURE__ */
|
|
2617
|
+
/* @__PURE__ */ o.jsx(
|
|
2536
2618
|
"svg",
|
|
2537
2619
|
{
|
|
2538
2620
|
className: e,
|
|
2539
2621
|
fill: "currentcolor",
|
|
2540
2622
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2541
2623
|
viewBox: "0 0 164.61 164.61",
|
|
2542
|
-
children: /* @__PURE__ */
|
|
2624
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx(
|
|
2543
2625
|
"path",
|
|
2544
2626
|
{
|
|
2545
2627
|
d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM82.3,5c19.83,0,37.93,7.51,51.63,19.83L24.83,133.93c-12.32-13.7-19.83-31.8-19.83-51.63C5,39.68,39.68,5,82.3,5ZM82.3,159.61c-19.83,0-37.93-7.51-51.63-19.83L139.78,30.68c12.32,13.7,19.82,31.8,19.82,51.63,0,42.63-34.68,77.3-77.3,77.3ZM56.41,51.79h-6.06v-6.96c0-2.44,1.98-4.43,4.43-4.43h50.95l-7.07,7.07h-39.58c-1.47,0-2.66,1.19-2.66,2.66v1.66ZM40.02,106.1v-45.42c0-2.15,1.74-3.89,3.89-3.89h34.83c2.15,0,3.89,1.74,3.89,3.89v2.81l-4.45,4.45c.15-.36.23-.75.23-1.16v-.67c0-1.66-1.34-3-3-3h-28.5c-1.66,0-3,1.34-3,3v.67c0,1.66,1.34,3,3,3h28.5c.41,0,.8-.08,1.16-.23l-3.57,3.57h-26.09c-1.66,0-3,1.34-3,3v.67c0,1.66,1.34,3,3,3h19.43l-26.32,26.32ZM124.59,58.5v29.46c0,2.44-1.98,4.43-4.43,4.43h-23.77c7.81,1.84,13.23,8.81,13.23,13.41h-21.98v-10.34l10.15-10.15h18.09c1.47,0,2.66-1.19,2.66-2.66v-18.09l6.06-6.06ZM58.88,124.21h19.86c2.15,0,3.89-1.74,3.89-3.89v-19.86l-23.75,23.75ZM74.67,118.28c-2.07,0-3.75-1.68-3.75-3.75s1.68-3.75,3.75-3.75,3.75,1.68,3.75,3.75-1.68,3.75-3.75,3.75Z",
|
|
@@ -2551,14 +2633,14 @@ const O6 = () => {
|
|
|
2551
2633
|
),
|
|
2552
2634
|
EnabledImage: (
|
|
2553
2635
|
/* icon-roomPC-enabled.svg */
|
|
2554
|
-
/* @__PURE__ */
|
|
2636
|
+
/* @__PURE__ */ o.jsx(
|
|
2555
2637
|
"svg",
|
|
2556
2638
|
{
|
|
2557
2639
|
className: e,
|
|
2558
2640
|
fill: "currentcolor",
|
|
2559
2641
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2560
2642
|
viewBox: "0 0 164.61 164.61",
|
|
2561
|
-
children: /* @__PURE__ */
|
|
2643
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx(
|
|
2562
2644
|
"path",
|
|
2563
2645
|
{
|
|
2564
2646
|
d: "M78.74,56.79h-34.83c-2.15,0-3.89,1.74-3.89,3.89v59.64c0,2.15,1.74,3.89,3.89,3.89h34.83c2.15,0,3.89-1.74,3.89-3.89v-59.64c0-2.15-1.74-3.89-3.89-3.89ZM74.67,118.28c-2.07,0-3.75-1.68-3.75-3.75s1.68-3.75,3.75-3.75,3.75,1.68,3.75,3.75-1.68,3.75-3.75,3.75ZM78.42,76.78c0,1.66-1.34,3-3,3h-28.5c-1.66,0-3-1.34-3-3v-.67c0-1.66,1.34-3,3-3h28.5c1.66,0,3,1.34,3,3v.67ZM78.42,66.78c0,1.66-1.34,3-3,3h-28.5c-1.66,0-3-1.34-3-3v-.67c0-1.66,1.34-3,3-3h28.5c1.66,0,3,1.34,3,3v.67ZM124.59,44.82v43.13c0,2.44-1.98,4.43-4.43,4.43h-23.77c7.81,1.84,13.23,8.81,13.23,13.41h-21.98v-20.48h28.24c1.47,0,2.66-1.19,2.66-2.66v-32.53c0-1.47-1.19-2.66-2.66-2.66h-56.8c-1.47,0-2.66,1.19-2.66,2.66v1.66h-6.06v-6.96c0-2.44,1.98-4.43,4.43-4.43h65.38c2.44,0,4.43,1.98,4.43,4.43ZM82.3,164.61C36.92,164.61,0,127.69,0,82.3S36.92,0,82.3,0s82.3,36.92,82.3,82.3-36.92,82.3-82.3,82.3ZM82.3,5C39.68,5,5,39.68,5,82.3s34.68,77.3,77.3,77.3,77.3-34.68,77.3-77.3S124.93,5,82.3,5Z",
|
|
@@ -2571,726 +2653,736 @@ const O6 = () => {
|
|
|
2571
2653
|
active: t,
|
|
2572
2654
|
disabled: s
|
|
2573
2655
|
}
|
|
2574
|
-
),
|
|
2656
|
+
), x8 = ({
|
|
2575
2657
|
active: t,
|
|
2576
2658
|
className: e = "",
|
|
2577
2659
|
disabled: s
|
|
2578
|
-
}) => /* @__PURE__ */
|
|
2579
|
-
|
|
2660
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2661
|
+
m,
|
|
2580
2662
|
{
|
|
2581
2663
|
ActiveImage: (
|
|
2582
2664
|
/* icon-shade-active.svg */
|
|
2583
|
-
/* @__PURE__ */
|
|
2665
|
+
/* @__PURE__ */ o.jsx(
|
|
2584
2666
|
"svg",
|
|
2585
2667
|
{
|
|
2586
2668
|
className: e,
|
|
2587
2669
|
fill: "currentcolor",
|
|
2588
2670
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2589
2671
|
viewBox: "0 0 164.61 164.61",
|
|
2590
|
-
children: /* @__PURE__ */
|
|
2672
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M82.3,95.41c3.37,0,6.11,2.74,6.11,6.11s-2.74,6.11-6.11,6.11-6.11-2.74-6.11-6.11,2.74-6.11,6.11-6.11ZM115.99,39.18h-2.45v37.29h-28.88v14.25c4.97,1.09,8.7,5.51,8.7,10.8,0,6.1-4.96,11.06-11.06,11.06s-11.06-4.96-11.06-11.06c0-5.29,3.73-9.71,8.7-10.8v-14.25h-28.99v-37.29h-2.33v86.25h67.38V39.18ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM122.99,32.18H41.61v100.25h81.38V32.18Z" }) })
|
|
2591
2673
|
}
|
|
2592
2674
|
)
|
|
2593
2675
|
),
|
|
2594
2676
|
DisabledImage: (
|
|
2595
2677
|
/* icon-shade-disabled.svg */
|
|
2596
|
-
/* @__PURE__ */
|
|
2678
|
+
/* @__PURE__ */ o.jsx(
|
|
2597
2679
|
"svg",
|
|
2598
2680
|
{
|
|
2599
2681
|
className: e,
|
|
2600
2682
|
fill: "currentcolor",
|
|
2601
2683
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2602
2684
|
viewBox: "0 0 164.61 164.61",
|
|
2603
|
-
children: /* @__PURE__ */
|
|
2685
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM86.24,96.85l3.5-3.5c2.22,2.02,3.63,4.93,3.63,8.17,0,6.1-4.96,11.06-11.06,11.06-3.24,0-6.14-1.41-8.17-3.63l3.5-3.5c1.12,1.33,2.8,2.17,4.67,2.17,3.37,0,6.11-2.74,6.11-6.11,0-1.87-.85-3.55-2.17-4.67ZM41.61,104.51V32.18h72.33l-44.29,44.29h-18.7v-37.29h-2.33v58.33l-7,7ZM113.55,76.47h-6.93l6.93-6.93v6.93ZM122.99,60.1v72.33H50.66l7-7h58.33v-58.33l7-7Z" }) })
|
|
2604
2686
|
}
|
|
2605
2687
|
)
|
|
2606
2688
|
),
|
|
2607
2689
|
EnabledImage: (
|
|
2608
2690
|
/* icon-shade-enabled.svg */
|
|
2609
|
-
/* @__PURE__ */
|
|
2691
|
+
/* @__PURE__ */ o.jsx(
|
|
2610
2692
|
"svg",
|
|
2611
2693
|
{
|
|
2612
2694
|
className: e,
|
|
2613
2695
|
fill: "currentcolor",
|
|
2614
2696
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2615
2697
|
viewBox: "0 0 164.61 164.61",
|
|
2616
|
-
children: /* @__PURE__ */
|
|
2698
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5ZM41.61,32.18v100.25h81.38V32.18H41.61ZM82.3,95.41c3.37,0,6.11,2.74,6.11,6.11s-2.74,6.11-6.11,6.11-6.11-2.74-6.11-6.11,2.74-6.11,6.11-6.11ZM115.99,125.43H48.61V39.18h2.33v37.29h28.99v14.25c-4.97,1.09-8.7,5.51-8.7,10.8,0,6.1,4.96,11.06,11.06,11.06s11.06-4.96,11.06-11.06c0-5.29-3.73-9.71-8.7-10.8v-14.25h28.88v-37.29h2.45v86.25Z" }) })
|
|
2617
2699
|
}
|
|
2618
2700
|
)
|
|
2619
2701
|
),
|
|
2620
2702
|
active: t,
|
|
2621
2703
|
disabled: s
|
|
2622
2704
|
}
|
|
2623
|
-
),
|
|
2705
|
+
), M8 = ({
|
|
2624
2706
|
active: t,
|
|
2625
2707
|
className: e = "",
|
|
2626
2708
|
disabled: s
|
|
2627
|
-
}) => /* @__PURE__ */
|
|
2628
|
-
|
|
2709
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2710
|
+
m,
|
|
2629
2711
|
{
|
|
2630
2712
|
ActiveImage: (
|
|
2631
2713
|
/* icon-sun-active.svg */
|
|
2632
|
-
/* @__PURE__ */
|
|
2714
|
+
/* @__PURE__ */ o.jsx(
|
|
2633
2715
|
"svg",
|
|
2634
2716
|
{
|
|
2635
2717
|
className: e,
|
|
2636
2718
|
fill: "currentcolor",
|
|
2637
2719
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2638
2720
|
viewBox: "0 0 164.61 164.61",
|
|
2639
|
-
children: /* @__PURE__ */
|
|
2721
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM109.71,57.11l17.69-14.1c2.16-1.72,5.31-1.37,7.03.79,1.72,2.16,1.37,5.31-.79,7.03l-17.69,14.1c-.92.73-2.02,1.09-3.11,1.09-1.47,0-2.92-.64-3.91-1.88-1.72-2.16-1.37-5.31.79-7.03ZM77.37,23.69c0-2.76,2.24-5,5-5h0c2.76,0,5,2.24,5,5l-.02,22.63c0,2.76-2.24,5-5,5h0c-2.76,0-5-2.24-5-5l.02-22.63ZM30.22,43.75c1.72-2.16,4.87-2.51,7.03-.79l17.68,14.12c2.16,1.72,2.51,4.87.79,7.03-.99,1.24-2.44,1.88-3.91,1.88-1.09,0-2.2-.36-3.12-1.09l-17.68-14.12c-2.16-1.72-2.51-4.87-.79-7.03ZM45.36,98.89l-22.06,5.02c-.37.08-.75.13-1.11.13-2.28,0-4.34-1.57-4.87-3.89-.61-2.69,1.07-5.37,3.77-5.98l22.06-5.02c2.69-.62,5.37,1.07,5.98,3.77.61,2.69-1.07,5.37-3.77,5.98ZM69.86,122.68l-9.83,20.38c-.86,1.79-2.65,2.83-4.51,2.83-.73,0-1.47-.16-2.17-.5-2.49-1.2-3.53-4.19-2.33-6.68l9.83-20.38c1.2-2.49,4.19-3.53,6.68-2.33,2.49,1.2,3.53,4.19,2.33,6.68ZM56.81,82.3c0-14.08,11.41-25.49,25.49-25.49s25.49,11.41,25.49,25.49-11.41,25.49-25.49,25.49-25.49-11.41-25.49-25.49ZM111.21,145.42c-.7.34-1.44.5-2.16.5-1.86,0-3.65-1.04-4.51-2.83l-9.81-20.39c-1.2-2.49-.15-5.48,2.34-6.67,2.49-1.2,5.48-.15,6.67,2.34l9.81,20.39c1.2,2.49.15,5.48-2.34,6.67ZM142.43,104.09c-.37,0-.74-.04-1.12-.13l-22.06-5.04c-2.69-.62-4.38-3.3-3.76-5.99.61-2.69,3.3-4.38,5.99-3.76l22.06,5.04c2.69.62,4.38,3.3,3.76,5.99-.53,2.32-2.59,3.89-4.87,3.89Z" }) })
|
|
2640
2722
|
}
|
|
2641
2723
|
)
|
|
2642
2724
|
),
|
|
2643
2725
|
DisabledImage: (
|
|
2644
2726
|
/* icon-sun-disabled.svg */
|
|
2645
|
-
/* @__PURE__ */
|
|
2727
|
+
/* @__PURE__ */ o.jsx(
|
|
2646
2728
|
"svg",
|
|
2647
2729
|
{
|
|
2648
2730
|
className: e,
|
|
2649
2731
|
fill: "currentcolor",
|
|
2650
2732
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2651
2733
|
viewBox: "0 0 164.61 164.61",
|
|
2652
|
-
children: /* @__PURE__ */
|
|
2734
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM17.31,100.14c-.61-2.69,1.07-5.37,3.77-5.98l22.06-5.02c2.69-.62,5.37,1.07,5.98,3.77.61,2.69-1.07,5.37-3.77,5.98l-22.06,5.02c-.37.08-.75.13-1.11.13-2.28,0-4.34-1.57-4.87-3.89ZM77.35,46.31l.02-22.63c0-2.76,2.24-5,5-5h0c2.76,0,5,2.24,5,5l-.02,22.63c0,2.76-2.24,5-5,5h0c-2.76,0-5-2.24-5-5ZM57.08,89.04c-.18-1.21-.27-2.44-.27-3.69,0-14.08,11.41-25.49,25.49-25.49,1.25,0,2.49.09,3.69.27l-28.92,28.92ZM30.22,43.75c1.72-2.16,4.87-2.51,7.03-.79l17.68,14.12c2.16,1.72,2.51,4.87.79,7.03-.99,1.24-2.44,1.88-3.91,1.88-1.09,0-2.2-.36-3.12-1.09l-17.68-14.12c-2.16-1.72-2.51-4.87-.79-7.03ZM147.29,100.2c-.53,2.32-2.59,3.89-4.87,3.89-.37,0-.74-.04-1.12-.13l-22.06-5.04c-2.69-.62-4.38-3.3-3.76-5.99.61-2.69,3.3-4.38,5.99-3.76l22.06,5.04c2.69.62,4.38,3.3,3.76,5.99ZM113.55,138.75c1.2,2.49.15,5.48-2.34,6.67-.7.34-1.44.5-2.16.5-1.86,0-3.65-1.04-4.51-2.83l-9.81-20.39c-1.2-2.49-.15-5.48,2.34-6.67,2.49-1.2,5.48-.15,6.67,2.34l9.81,20.39ZM82.3,110.85c-2.03,0-4-.24-5.9-.69l30.7-30.7c.45,1.89.69,3.87.69,5.9,0,14.08-11.41,25.49-25.49,25.49ZM69.21,117.35c1.19,1.46,1.52,3.53.65,5.34l-9.83,20.38c-.86,1.79-2.65,2.83-4.51,2.83-.73,0-1.47-.16-2.17-.5-2.49-1.2-3.53-4.19-2.33-6.68l2.97-6.15,15.22-15.22Z" }) })
|
|
2653
2735
|
}
|
|
2654
2736
|
)
|
|
2655
2737
|
),
|
|
2656
2738
|
EnabledImage: (
|
|
2657
2739
|
/* icon-sun-enabled.svg */
|
|
2658
|
-
/* @__PURE__ */
|
|
2740
|
+
/* @__PURE__ */ o.jsx(
|
|
2659
2741
|
"svg",
|
|
2660
2742
|
{
|
|
2661
2743
|
className: e,
|
|
2662
2744
|
fill: "currentcolor",
|
|
2663
2745
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2664
2746
|
viewBox: "0 0 164.61 164.61",
|
|
2665
|
-
children: /* @__PURE__ */
|
|
2747
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5ZM82.3,59.86c14.08,0,25.49,11.41,25.49,25.49s-11.41,25.49-25.49,25.49-25.49-11.41-25.49-25.49,11.41-25.49,25.49-25.49ZM111.21,145.42c2.49-1.2,3.54-4.19,2.34-6.67l-9.81-20.39c-1.2-2.49-4.18-3.54-6.67-2.34-2.49,1.2-3.54,4.19-2.34,6.67l9.81,20.39c.86,1.79,2.65,2.83,4.51,2.83.73,0,1.46-.16,2.16-.5ZM60.03,143.06l9.83-20.38c1.2-2.49.16-5.48-2.33-6.68-2.49-1.2-5.48-.15-6.68,2.33l-9.83,20.38c-1.2,2.49-.16,5.48,2.33,6.68.7.34,1.44.5,2.17.5,1.86,0,3.65-1.04,4.51-2.83ZM147.29,100.2c.62-2.69-1.07-5.37-3.76-5.99l-22.06-5.04c-2.69-.62-5.37,1.07-5.99,3.76-.62,2.69,1.07,5.37,3.76,5.99l22.06,5.04c.38.09.75.13,1.12.13,2.28,0,4.34-1.57,4.87-3.89ZM23.3,103.91l22.06-5.02c2.69-.61,4.38-3.29,3.77-5.98-.61-2.69-3.29-4.38-5.98-3.77l-22.06,5.02c-2.69.61-4.38,3.29-3.77,5.98.53,2.32,2.59,3.89,4.87,3.89.37,0,.74-.04,1.11-.13ZM115.95,64.93l17.69-14.1c2.16-1.72,2.51-4.87.79-7.03-1.72-2.16-4.87-2.51-7.03-.79l-17.69,14.1c-2.16,1.72-2.51,4.87-.79,7.03.99,1.24,2.44,1.88,3.91,1.88,1.09,0,2.19-.36,3.11-1.09ZM55.72,64.11c1.72-2.16,1.37-5.3-.79-7.03l-17.68-14.12c-2.16-1.72-5.3-1.37-7.03.79-1.72,2.16-1.37,5.3.79,7.03l17.68,14.12c.92.74,2.02,1.09,3.12,1.09,1.47,0,2.92-.64,3.91-1.88ZM87.35,46.32l.02-22.63c0-2.76-2.23-5-5-5h0c-2.76,0-5,2.24-5,5l-.02,22.63c0,2.76,2.23,5,5,5h0c2.76,0,5-2.24,5-5Z" }) })
|
|
2666
2748
|
}
|
|
2667
2749
|
)
|
|
2668
2750
|
),
|
|
2669
2751
|
active: t,
|
|
2670
2752
|
disabled: s
|
|
2671
2753
|
}
|
|
2672
|
-
),
|
|
2754
|
+
), m8 = ({
|
|
2673
2755
|
active: t,
|
|
2674
2756
|
className: e = "",
|
|
2675
2757
|
disabled: s
|
|
2676
|
-
}) => /* @__PURE__ */
|
|
2677
|
-
|
|
2758
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2759
|
+
m,
|
|
2678
2760
|
{
|
|
2679
2761
|
ActiveImage: (
|
|
2680
2762
|
/* icon-up-active.svg */
|
|
2681
|
-
/* @__PURE__ */
|
|
2763
|
+
/* @__PURE__ */ o.jsx(
|
|
2682
2764
|
"svg",
|
|
2683
2765
|
{
|
|
2684
2766
|
className: e,
|
|
2685
2767
|
fill: "currentcolor",
|
|
2686
2768
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2687
2769
|
viewBox: "0 0 164.61 164.61",
|
|
2688
|
-
children: /* @__PURE__ */
|
|
2770
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM116.84,113.89l-34.53-38.72-34.53,38.72-12.15-10.84,35.78-40.12,10.91-12.23,10.91,12.23,35.78,40.12-12.15,10.84Z" }) })
|
|
2689
2771
|
}
|
|
2690
2772
|
)
|
|
2691
2773
|
),
|
|
2692
2774
|
DisabledImage: (
|
|
2693
2775
|
/* icon-up-disabled.svg */
|
|
2694
|
-
/* @__PURE__ */
|
|
2776
|
+
/* @__PURE__ */ o.jsx(
|
|
2695
2777
|
"svg",
|
|
2696
2778
|
{
|
|
2697
2779
|
className: e,
|
|
2698
2780
|
fill: "currentcolor",
|
|
2699
2781
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2700
2782
|
viewBox: "0 0 164.61 164.61",
|
|
2701
|
-
children: /* @__PURE__ */
|
|
2783
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.82,31.8,19.82,51.63,0,42.63-34.68,77.3-77.3,77.3ZM111.73,71.36l15.26,17.11-12.15,10.84-14.64-16.41,11.53-11.53ZM45.77,99.31l-12.15-10.84,35.78-40.12,10.91-12.23,10.91,12.23,3.09,3.47-11.53,11.53-2.47-2.77-34.53,38.72Z" }) })
|
|
2702
2784
|
}
|
|
2703
2785
|
)
|
|
2704
2786
|
),
|
|
2705
2787
|
EnabledImage: (
|
|
2706
2788
|
/* icon-up-enabled.svg */
|
|
2707
|
-
/* @__PURE__ */
|
|
2789
|
+
/* @__PURE__ */ o.jsx(
|
|
2708
2790
|
"svg",
|
|
2709
2791
|
{
|
|
2710
2792
|
className: e,
|
|
2711
2793
|
fill: "currentcolor",
|
|
2712
2794
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2713
2795
|
viewBox: "0 0 164.61 164.61",
|
|
2714
|
-
children: /* @__PURE__ */
|
|
2796
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5ZM116.84,113.89l12.15-10.84-35.78-40.12-10.91-12.23-10.91,12.23-35.78,40.12,12.15,10.84,34.53-38.72,34.53,38.72Z" }) })
|
|
2715
2797
|
}
|
|
2716
2798
|
)
|
|
2717
2799
|
),
|
|
2718
2800
|
active: t,
|
|
2719
2801
|
disabled: s
|
|
2720
2802
|
}
|
|
2721
|
-
),
|
|
2803
|
+
), Z8 = ({
|
|
2722
2804
|
active: t,
|
|
2723
2805
|
className: e = "",
|
|
2724
2806
|
disabled: s
|
|
2725
|
-
}) => /* @__PURE__ */
|
|
2726
|
-
|
|
2807
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2808
|
+
m,
|
|
2727
2809
|
{
|
|
2728
2810
|
ActiveImage: (
|
|
2729
2811
|
/* icon-volDown-active.svg */
|
|
2730
|
-
/* @__PURE__ */
|
|
2812
|
+
/* @__PURE__ */ o.jsx(
|
|
2731
2813
|
"svg",
|
|
2732
2814
|
{
|
|
2733
2815
|
className: e,
|
|
2734
2816
|
fill: "currentcolor",
|
|
2735
2817
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2736
2818
|
viewBox: "0 0 164.61 164.61",
|
|
2737
|
-
children: /* @__PURE__ */
|
|
2819
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM95.01,127.49l-28.24-28.24h-22.6v-33.89h22.6l28.24-28.24v90.38ZM116.55,95.86c-2.59,4.05-6,7.06-10.24,9.04v-45.47c4.24,1.98,7.65,5.04,10.24,9.18,2.59,4.14,3.88,8.71,3.88,13.7s-1.29,9.51-3.88,13.56Z" }) })
|
|
2738
2820
|
}
|
|
2739
2821
|
)
|
|
2740
2822
|
),
|
|
2741
2823
|
DisabledImage: (
|
|
2742
2824
|
/* icon-volDown-disabled.svg */
|
|
2743
|
-
/* @__PURE__ */
|
|
2825
|
+
/* @__PURE__ */ o.jsx(
|
|
2744
2826
|
"svg",
|
|
2745
2827
|
{
|
|
2746
2828
|
className: e,
|
|
2747
2829
|
fill: "currentcolor",
|
|
2748
2830
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2749
2831
|
viewBox: "0 0 164.61 164.61",
|
|
2750
|
-
children: /* @__PURE__ */
|
|
2832
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.01,88.08v39.42l-19.71-19.71,19.71-19.71ZM46.87,99.25h-2.7v-33.89h22.6l28.24-28.24v14l-48.14,48.14ZM116.55,68.61c2.59,4.14,3.88,8.71,3.88,13.7s-1.29,9.51-3.88,13.56-6,7.06-10.24,9.04v-28.12l9.41-9.41c.28.4.56.81.83,1.23Z" }) })
|
|
2751
2833
|
}
|
|
2752
2834
|
)
|
|
2753
2835
|
),
|
|
2754
2836
|
EnabledImage: (
|
|
2755
2837
|
/* icon-volDown-enabled.svg */
|
|
2756
|
-
/* @__PURE__ */
|
|
2838
|
+
/* @__PURE__ */ o.jsx(
|
|
2757
2839
|
"svg",
|
|
2758
2840
|
{
|
|
2759
2841
|
className: e,
|
|
2760
2842
|
fill: "currentcolor",
|
|
2761
2843
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2762
2844
|
viewBox: "0 0 164.61 164.61",
|
|
2763
|
-
children: /* @__PURE__ */
|
|
2845
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M44.17,99.25v-33.89h22.6l28.24-28.24v90.38l-28.24-28.24h-22.6ZM106.31,104.9v-45.47c4.24,1.98,7.65,5.04,10.24,9.18s3.88,8.71,3.88,13.7-1.29,9.51-3.88,13.56-6,7.06-10.24,9.04ZM82.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" }) })
|
|
2764
2846
|
}
|
|
2765
2847
|
)
|
|
2766
2848
|
),
|
|
2767
2849
|
active: t,
|
|
2768
2850
|
disabled: s
|
|
2769
2851
|
}
|
|
2770
|
-
),
|
|
2852
|
+
), j8 = ({
|
|
2771
2853
|
active: t,
|
|
2772
2854
|
className: e = "",
|
|
2773
2855
|
disabled: s
|
|
2774
|
-
}) => /* @__PURE__ */
|
|
2775
|
-
|
|
2856
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2857
|
+
m,
|
|
2776
2858
|
{
|
|
2777
2859
|
ActiveImage: (
|
|
2778
2860
|
/* icon-volMute-active.svg */
|
|
2779
|
-
/* @__PURE__ */
|
|
2861
|
+
/* @__PURE__ */ o.jsx(
|
|
2780
2862
|
"svg",
|
|
2781
2863
|
{
|
|
2782
2864
|
className: e,
|
|
2783
2865
|
fill: "currentcolor",
|
|
2784
2866
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2785
2867
|
viewBox: "0 0 164.61 164.61",
|
|
2786
|
-
children: /* @__PURE__ */
|
|
2868
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M28.09,130.67s0,0,0,0L132.11,26.65s0,0,0,0l5.37-5.37C122.87,8.07,103.51,0,82.3,0,36.92,0,0,36.92,0,82.3c0,21.21,8.07,40.56,21.29,55.17l6.8-6.8ZM93.6,32.88c5.17,1.17,9.91,2.98,14.22,5.42l-8.35,8.35c-1.86-.86-3.82-1.59-5.88-2.19v-11.58ZM31.46,65.5h22.6l28.24-28.24v26.57l-35.57,35.57h-15.27v-33.89ZM137.94,32.52l-104.05,104.05h0l-6.76,6.76c14.61,13.22,33.96,21.28,55.17,21.28,45.38,0,82.3-36.92,82.3-82.3,0-21.21-8.06-40.56-21.28-55.17l-5.39,5.39ZM93.6,89.49l13.36-13.36c.5,2.03.76,4.14.76,6.32,0,4.8-1.25,9.25-3.74,13.35-2.49,4.1-5.95,7.18-10.38,9.25v-15.55ZM82.3,127.64l-13.42-13.42,13.42-13.42v26.85ZM122.13,114.01c-7.34,9.18-16.85,15.09-28.53,17.72v-11.58c8.47-2.45,15.3-7.16,20.48-14.12,5.18-6.97,7.77-14.88,7.77-23.73,0-6.21-1.28-11.95-3.83-17.23l8.34-8.34c4.52,7.67,6.79,16.19,6.79,25.57,0,11.96-3.67,22.52-11.02,31.7Z" }) })
|
|
2787
2869
|
}
|
|
2788
2870
|
)
|
|
2789
2871
|
),
|
|
2790
2872
|
DisabledImage: (
|
|
2791
2873
|
/* icon-volMute-disabled.svg */
|
|
2792
|
-
/* @__PURE__ */
|
|
2874
|
+
/* @__PURE__ */ o.jsx(
|
|
2793
2875
|
"svg",
|
|
2794
2876
|
{
|
|
2795
2877
|
className: e,
|
|
2796
2878
|
fill: "currentcolor",
|
|
2797
2879
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2798
2880
|
viewBox: "0 0 164.61 164.61",
|
|
2799
|
-
children: /* @__PURE__ */
|
|
2881
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM93.6,89.49l13.36-13.36c.5,2.03.76,4.14.76,6.32,0,4.8-1.25,9.25-3.74,13.35-2.49,4.1-5.95,7.18-10.38,9.25v-15.55ZM99.48,46.65c-1.86-.86-3.82-1.59-5.88-2.19v-11.58c5.17,1.17,9.91,2.98,14.22,5.42l-8.35,8.35ZM82.3,100.79v26.85l-13.42-13.42,13.42-13.42ZM126.36,56.74c4.52,7.67,6.79,16.19,6.79,25.57,0,11.96-3.67,22.52-11.02,31.7s-16.85,15.09-28.53,17.72v-11.58c8.47-2.45,15.3-7.16,20.48-14.12,5.18-6.97,7.77-14.88,7.77-23.73,0-6.21-1.28-11.95-3.83-17.23l8.34-8.34ZM46.73,99.39h-15.27v-33.89h22.6l28.24-28.24v26.57l-35.57,35.57Z" }) })
|
|
2800
2882
|
}
|
|
2801
2883
|
)
|
|
2802
2884
|
),
|
|
2803
2885
|
EnabledImage: (
|
|
2804
2886
|
/* icon-volMute-enabled.svg */
|
|
2805
|
-
/* @__PURE__ */
|
|
2887
|
+
/* @__PURE__ */ o.jsx(
|
|
2806
2888
|
"svg",
|
|
2807
2889
|
{
|
|
2808
2890
|
className: e,
|
|
2809
2891
|
fill: "currentcolor",
|
|
2810
2892
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2811
2893
|
viewBox: "0 0 164.61 164.61",
|
|
2812
|
-
children: /* @__PURE__ */
|
|
2894
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM93.6,89.49l13.36-13.36c.5,2.03.76,4.14.76,6.32,0,4.8-1.25,9.25-3.74,13.35-2.49,4.1-5.95,7.18-10.38,9.25v-15.55ZM99.48,46.65c-1.86-.86-3.82-1.59-5.88-2.19v-11.58c5.17,1.17,9.91,2.98,14.22,5.42l-8.35,8.35ZM82.3,100.79v26.85l-13.42-13.42,13.42-13.42ZM126.36,56.74c4.52,7.67,6.79,16.19,6.79,25.57,0,11.96-3.67,22.52-11.02,31.7s-16.85,15.09-28.53,17.72v-11.58c8.47-2.45,15.3-7.16,20.48-14.12,5.18-6.97,7.77-14.88,7.77-23.73,0-6.21-1.28-11.95-3.83-17.23l8.34-8.34ZM46.73,99.39h-15.27v-33.89h22.6l28.24-28.24v26.57l-35.57,35.57Z" }) })
|
|
2813
2895
|
}
|
|
2814
2896
|
)
|
|
2815
2897
|
),
|
|
2816
2898
|
active: t,
|
|
2817
2899
|
disabled: s
|
|
2818
2900
|
}
|
|
2819
|
-
),
|
|
2901
|
+
), C8 = ({
|
|
2820
2902
|
active: t,
|
|
2821
2903
|
className: e = "",
|
|
2822
2904
|
disabled: s
|
|
2823
|
-
}) => /* @__PURE__ */
|
|
2824
|
-
|
|
2905
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2906
|
+
m,
|
|
2825
2907
|
{
|
|
2826
2908
|
ActiveImage: (
|
|
2827
2909
|
/* icon-volUp-active.svg */
|
|
2828
|
-
/* @__PURE__ */
|
|
2910
|
+
/* @__PURE__ */ o.jsx(
|
|
2829
2911
|
"svg",
|
|
2830
2912
|
{
|
|
2831
2913
|
className: e,
|
|
2832
2914
|
fill: "currentcolor",
|
|
2833
2915
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2834
2916
|
viewBox: "0 0 164.61 164.61",
|
|
2835
|
-
children: /* @__PURE__ */
|
|
2917
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,127.64l-28.24-28.24h-22.6v-33.89h22.6l28.24-28.24v90.38ZM93.6,59.57c4.42,2.07,7.88,5.18,10.38,9.32,2.49,4.14,3.74,8.66,3.74,13.56s-1.25,9.25-3.74,13.35c-2.49,4.1-5.95,7.18-10.38,9.25v-45.47ZM122.13,114.01c-7.34,9.18-16.85,15.09-28.53,17.72v-11.58c8.47-2.45,15.3-7.16,20.48-14.12,5.18-6.97,7.77-14.88,7.77-23.73s-2.59-16.76-7.77-23.73c-5.18-6.97-12-11.67-20.48-14.12v-11.58c11.67,2.64,21.18,8.54,28.53,17.72,7.34,9.18,11.02,19.75,11.02,31.7s-3.67,22.52-11.02,31.7Z" }) })
|
|
2836
2918
|
}
|
|
2837
2919
|
)
|
|
2838
2920
|
),
|
|
2839
2921
|
DisabledImage: (
|
|
2840
2922
|
/* icon-volUp-disabled.svg */
|
|
2841
|
-
/* @__PURE__ */
|
|
2923
|
+
/* @__PURE__ */ o.jsx(
|
|
2842
2924
|
"svg",
|
|
2843
2925
|
{
|
|
2844
2926
|
className: e,
|
|
2845
2927
|
fill: "currentcolor",
|
|
2846
2928
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2847
2929
|
viewBox: "0 0 164.61 164.61",
|
|
2848
|
-
children: /* @__PURE__ */
|
|
2930
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM93.6,89.49l13.36-13.36c.5,2.03.76,4.14.76,6.32,0,4.8-1.25,9.25-3.74,13.35-2.49,4.1-5.95,7.18-10.38,9.25v-15.55ZM99.48,46.65c-1.86-.86-3.82-1.59-5.88-2.19v-11.58c5.17,1.17,9.91,2.98,14.22,5.42l-8.35,8.35ZM82.3,100.79v26.85l-13.42-13.42,13.42-13.42ZM126.36,56.74c4.52,7.67,6.79,16.19,6.79,25.57,0,11.96-3.67,22.52-11.02,31.7s-16.85,15.09-28.53,17.72v-11.58c8.47-2.45,15.3-7.16,20.48-14.12,5.18-6.97,7.77-14.88,7.77-23.73,0-6.21-1.28-11.95-3.83-17.23l8.34-8.34ZM46.73,99.39h-15.27v-33.89h22.6l28.24-28.24v26.57l-35.57,35.57Z" }) })
|
|
2849
2931
|
}
|
|
2850
2932
|
)
|
|
2851
2933
|
),
|
|
2852
2934
|
EnabledImage: (
|
|
2853
2935
|
/* icon-volUp-enabled.svg */
|
|
2854
|
-
/* @__PURE__ */
|
|
2936
|
+
/* @__PURE__ */ o.jsx(
|
|
2855
2937
|
"svg",
|
|
2856
2938
|
{
|
|
2857
2939
|
className: e,
|
|
2858
2940
|
fill: "currentcolor",
|
|
2859
2941
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2860
2942
|
viewBox: "0 0 164.61 164.61",
|
|
2861
|
-
children: /* @__PURE__ */
|
|
2943
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M93.6,131.73v-11.58c8.47-2.45,15.3-7.16,20.48-14.12s7.77-14.88,7.77-23.73-2.59-16.76-7.77-23.73-12-11.67-20.48-14.12v-11.58c11.67,2.64,21.18,8.54,28.53,17.72s11.02,19.75,11.02,31.7-3.67,22.52-11.02,31.7-16.85,15.09-28.53,17.72ZM31.46,99.39v-33.89h22.6l28.24-28.24v90.38l-28.24-28.24h-22.6ZM93.6,105.04v-45.47c4.42,2.07,7.88,5.18,10.38,9.32s3.74,8.66,3.74,13.56-1.25,9.25-3.74,13.35-5.95,7.18-10.38,9.25ZM82.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" }) })
|
|
2862
2944
|
}
|
|
2863
2945
|
)
|
|
2864
2946
|
),
|
|
2865
2947
|
active: t,
|
|
2866
2948
|
disabled: s
|
|
2867
2949
|
}
|
|
2868
|
-
),
|
|
2950
|
+
), S8 = ({
|
|
2869
2951
|
active: t,
|
|
2870
2952
|
className: e = "",
|
|
2871
2953
|
disabled: s
|
|
2872
|
-
}) => /* @__PURE__ */
|
|
2873
|
-
|
|
2954
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
2955
|
+
m,
|
|
2874
2956
|
{
|
|
2875
2957
|
ActiveImage: (
|
|
2876
2958
|
/* icon-wireless-active.svg */
|
|
2877
|
-
/* @__PURE__ */
|
|
2959
|
+
/* @__PURE__ */ o.jsx(
|
|
2878
2960
|
"svg",
|
|
2879
2961
|
{
|
|
2880
2962
|
className: e,
|
|
2881
2963
|
fill: "currentcolor",
|
|
2882
2964
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2883
2965
|
viewBox: "0 0 164.61 164.61",
|
|
2884
|
-
children: /* @__PURE__ */
|
|
2966
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM43.68,119.36c-3.46,0-6.26-2.8-6.26-6.26s2.8-6.26,6.26-6.26,6.26,2.8,6.26,6.26-2.8,6.26-6.26,6.26ZM65.54,114.71c-.15,2.05-1.88,3.61-3.93,3.61h0c-.1,0-.19,0-.29,0-2.17-.15-3.81-2.02-3.65-4.16.03-.35.04-.7.04-1.04,0-3.77-1.49-7.31-4.18-9.99-2.69-2.67-6.28-4.15-10.1-4.18-2.18-.01-3.93-1.76-3.92-3.91.01-2.14,1.78-3.86,3.95-3.86h.02c5.92.03,11.48,2.33,15.65,6.47,4.18,4.14,6.48,9.63,6.48,15.47,0,.52-.02,1.06-.06,1.59ZM83.32,114.48c-.08,2.15-1.86,3.84-4.02,3.84h0s0,0,0,0c-.05,0-.1,0-.15,0-2.22-.08-3.95-1.93-3.87-4.13.02-.46.03-.84.03-1.2,0-8.42-3.31-16.34-9.31-22.3-6-5.96-13.98-9.26-22.48-9.29-2.22,0-4.02-1.8-4.01-4,0-2.2,1.81-3.97,4.02-3.97h.01c5.38.02,10.59,1.08,15.5,3.14,4.74,2,9,4.85,12.65,8.48,3.65,3.63,6.52,7.86,8.53,12.56,2.08,4.87,3.13,10.04,3.13,15.37,0,.46-.01.93-.03,1.49ZM127.19,99.17c0,8.83-7.25,16.02-16.16,16.02h-17.04c-1.85,0-3.34-1.48-3.34-3.31s1.5-3.31,3.34-3.31h17.04c2.52,0,4.89-.98,6.69-2.76,1.8-1.78,2.78-4.13,2.78-6.63v-37.91c0-2.49-.99-4.85-2.78-6.63-1.8-1.78-4.17-2.76-6.69-2.76h-52.24c-2.52,0-4.89.98-6.69,2.76-1.8,1.78-2.78,4.13-2.78,6.63v2.14c0,1.83-1.5,3.31-3.34,3.31s-3.34-1.48-3.34-3.31v-2.14c0-8.83,7.25-16.02,16.16-16.02h52.24c8.91,0,16.16,7.18,16.16,16.02v37.91Z" }) })
|
|
2885
2967
|
}
|
|
2886
2968
|
)
|
|
2887
2969
|
),
|
|
2888
2970
|
DisabledImage: (
|
|
2889
2971
|
/* icon-wireless-disabled.svg */
|
|
2890
|
-
/* @__PURE__ */
|
|
2972
|
+
/* @__PURE__ */ o.jsx(
|
|
2891
2973
|
"svg",
|
|
2892
2974
|
{
|
|
2893
2975
|
className: e,
|
|
2894
2976
|
fill: "currentcolor",
|
|
2895
2977
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2896
2978
|
viewBox: "0 0 164.61 164.61",
|
|
2897
|
-
children: /* @__PURE__ */
|
|
2979
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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.3ZM39.5,77.4c0-2.2,1.81-3.97,4.02-3.97h.01c5.38.02,10.59,1.08,15.5,3.14,2.4,1.01,4.68,2.25,6.82,3.69l-5.78,5.78c-4.94-3.01-10.62-4.63-16.56-4.65-2.22,0-4.02-1.8-4.01-4ZM42.64,63.4v-2.14c0-8.83,7.25-16.02,16.16-16.02h42.09l-6.63,6.63h-35.46c-2.52,0-4.89.98-6.69,2.76-1.8,1.78-2.78,4.13-2.78,6.63v2.14c0,1.83-1.5,3.31-3.34,3.31s-3.34-1.48-3.34-3.31ZM126.49,56.6c.45,1.48.7,3.04.7,4.66v37.91c0,8.83-7.25,16.02-16.16,16.02h-17.04c-1.85,0-3.34-1.48-3.34-3.31s1.5-3.31,3.34-3.31h17.04c2.52,0,4.89-.98,6.69-2.76,1.8-1.78,2.78-4.13,2.78-6.63v-36.59l5.98-5.98ZM81.62,101.47c1.14,3.72,1.72,7.57,1.72,11.52,0,.46-.01.93-.03,1.49-.08,2.15-1.86,3.84-4.02,3.84h0s0,0,0,0c-.05,0-.1,0-.15,0-2.22-.08-3.95-1.93-3.87-4.13.02-.46.03-.84.03-1.2,0-1.63-.13-3.24-.37-4.83l6.69-6.69ZM39.5,95.04c.01-2.14,1.78-3.86,3.95-3.86h.02c3.29.02,6.47.76,9.36,2.11l-6.08,6.08c-1.08-.26-2.19-.41-3.33-.42-2.18-.01-3.93-1.76-3.92-3.91Z" }) })
|
|
2898
2980
|
}
|
|
2899
2981
|
)
|
|
2900
2982
|
),
|
|
2901
2983
|
EnabledImage: (
|
|
2902
2984
|
/* icon-wireless-enabled.svg */
|
|
2903
|
-
/* @__PURE__ */
|
|
2985
|
+
/* @__PURE__ */ o.jsx(
|
|
2904
2986
|
"svg",
|
|
2905
2987
|
{
|
|
2906
2988
|
className: e,
|
|
2907
2989
|
fill: "currentcolor",
|
|
2908
2990
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2909
2991
|
viewBox: "0 0 164.61 164.61",
|
|
2910
|
-
children: /* @__PURE__ */
|
|
2992
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5ZM94,115.19h17.04c8.91,0,16.16-7.18,16.16-16.02v-37.91c0-8.83-7.25-16.02-16.16-16.02h-52.24c-8.91,0-16.16,7.18-16.16,16.02v2.14c0,1.83,1.5,3.31,3.34,3.31s3.34-1.48,3.34-3.31v-2.14c0-2.49.99-4.85,2.78-6.63,1.8-1.78,4.17-2.76,6.69-2.76h52.24c2.52,0,4.89.98,6.69,2.76,1.8,1.78,2.78,4.13,2.78,6.63v37.91c0,2.49-.99,4.85-2.78,6.63-1.8,1.78-4.17,2.76-6.69,2.76h-17.04c-1.85,0-3.34,1.48-3.34,3.31s1.5,3.31,3.34,3.31ZM79.3,118.32h0c-.05,0-.1,0-.15,0-2.22-.08-3.95-1.93-3.87-4.13.02-.46.03-.84.03-1.2,0-8.42-3.31-16.34-9.31-22.3-6-5.96-13.98-9.26-22.48-9.29-2.22,0-4.02-1.8-4.01-4,0-2.2,1.81-3.97,4.02-3.97h.01c5.38.02,10.59,1.07,15.5,3.14,4.74,2,9,4.85,12.65,8.48,3.65,3.63,6.52,7.86,8.53,12.56,2.08,4.87,3.13,10.04,3.13,15.37,0,.46-.01.93-.03,1.49-.08,2.15-1.86,3.84-4.02,3.84h0ZM61.32,118.31c.1,0,.19.01.29.01h0c2.05,0,3.78-1.56,3.93-3.61.04-.53.06-1.07.06-1.59,0-5.84-2.3-11.33-6.48-15.47-4.17-4.14-9.73-6.43-15.65-6.47h-.02c-2.17,0-3.93,1.73-3.95,3.86-.01,2.15,1.74,3.9,3.92,3.91,3.82.02,7.41,1.51,10.1,4.18,2.7,2.67,4.18,6.22,4.18,9.99,0,.34-.01.69-.04,1.04-.16,2.14,1.48,4,3.65,4.16ZM49.94,113.1c0,3.46-2.8,6.26-6.26,6.26s-6.26-2.8-6.26-6.26,2.8-6.26,6.26-6.26,6.26,2.8,6.26,6.26Z" }) })
|
|
2911
2993
|
}
|
|
2912
2994
|
)
|
|
2913
2995
|
),
|
|
2914
2996
|
active: t,
|
|
2915
2997
|
disabled: s
|
|
2916
2998
|
}
|
|
2917
|
-
),
|
|
2999
|
+
), b8 = ({
|
|
2918
3000
|
active: t,
|
|
2919
3001
|
className: e = "",
|
|
2920
3002
|
disabled: s
|
|
2921
|
-
}) => /* @__PURE__ */
|
|
2922
|
-
|
|
3003
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
3004
|
+
m,
|
|
2923
3005
|
{
|
|
2924
3006
|
ActiveImage: (
|
|
2925
3007
|
/* icon-x-active.svg */
|
|
2926
|
-
/* @__PURE__ */
|
|
3008
|
+
/* @__PURE__ */ o.jsx(
|
|
2927
3009
|
"svg",
|
|
2928
3010
|
{
|
|
2929
3011
|
className: e,
|
|
2930
3012
|
fill: "currentcolor",
|
|
2931
3013
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2932
3014
|
viewBox: "0 0 164.61 164.61",
|
|
2933
|
-
children: /* @__PURE__ */
|
|
3015
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M82.3,10c39.87,0,72.3,32.44,72.3,72.3s-32.44,72.3-72.3,72.3S10,122.17,10,82.3,42.44,10,82.3,10M82.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,0h0ZM82.3,20.58c-34.04,0-61.73,27.69-61.73,61.73s27.69,61.73,61.73,61.73,61.73-27.69,61.73-61.73-27.69-61.73-61.73-61.73ZM110.69,126.02l-28.39-28.39-28.39,28.39-15.33-15.33,28.39-28.39-28.39-28.39,15.33-15.33,28.39,28.39,28.39-28.39,15.33,15.33-28.39,28.39,28.39,28.39-15.33,15.33Z" }) })
|
|
2934
3016
|
}
|
|
2935
3017
|
)
|
|
2936
3018
|
),
|
|
2937
3019
|
DisabledImage: (
|
|
2938
3020
|
/* icon-x-disabled.svg */
|
|
2939
|
-
/* @__PURE__ */
|
|
3021
|
+
/* @__PURE__ */ o.jsx(
|
|
2940
3022
|
"svg",
|
|
2941
3023
|
{
|
|
2942
3024
|
className: e,
|
|
2943
3025
|
fill: "currentcolor",
|
|
2944
3026
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2945
3027
|
viewBox: "0 0 164.61 164.61",
|
|
2946
|
-
children: /* @__PURE__ */
|
|
3028
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M38.59,110.69l28.39-28.39-28.39-28.39,15.33-15.33,28.39,28.39,28.39-28.39,1.65,1.65L40.24,112.34l-1.65-1.65ZM124.53,52.42L52.42,124.53l1.49,1.49,28.39-28.39,28.39,28.39,15.33-15.33-28.39-28.39,28.39-28.39-1.49-1.49ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM5,82.3c0,19.83,7.51,37.93,19.82,51.63L133.93,24.83c-13.7-12.32-31.8-19.83-51.63-19.83C39.68,5,5,39.68,5,82.3ZM159.61,82.3c0-19.83-7.51-37.93-19.83-51.63L30.68,139.78c13.7,12.32,31.8,19.83,51.63,19.83,42.63,0,77.3-34.68,77.3-77.3Z" }) })
|
|
2947
3029
|
}
|
|
2948
3030
|
)
|
|
2949
3031
|
),
|
|
2950
3032
|
EnabledImage: (
|
|
2951
3033
|
/* icon-x-enabled.svg */
|
|
2952
|
-
/* @__PURE__ */
|
|
3034
|
+
/* @__PURE__ */ o.jsx(
|
|
2953
3035
|
"svg",
|
|
2954
3036
|
{
|
|
2955
3037
|
className: e,
|
|
2956
3038
|
fill: "currentcolor",
|
|
2957
3039
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2958
3040
|
viewBox: "0 0 164.61 164.61",
|
|
2959
|
-
children: /* @__PURE__ */
|
|
3041
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5ZM126.02,53.92l-15.33-15.33-28.39,28.39-28.39-28.39-15.33,15.33,28.39,28.39-28.39,28.39,15.33,15.33,28.39-28.39,28.39,28.39,15.33-15.33-28.39-28.39,28.39-28.39Z" }) })
|
|
2960
3042
|
}
|
|
2961
3043
|
)
|
|
2962
3044
|
),
|
|
2963
3045
|
active: t,
|
|
2964
3046
|
disabled: s
|
|
2965
3047
|
}
|
|
2966
|
-
),
|
|
3048
|
+
), I8 = ({
|
|
2967
3049
|
active: t,
|
|
2968
3050
|
className: e = "",
|
|
2969
3051
|
disabled: s
|
|
2970
|
-
}) => /* @__PURE__ */
|
|
2971
|
-
|
|
3052
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
3053
|
+
m,
|
|
2972
3054
|
{
|
|
2973
3055
|
ActiveImage: (
|
|
2974
3056
|
/* icon-xbox-active.svg */
|
|
2975
|
-
/* @__PURE__ */
|
|
3057
|
+
/* @__PURE__ */ o.jsx(
|
|
2976
3058
|
"svg",
|
|
2977
3059
|
{
|
|
2978
3060
|
className: e,
|
|
2979
3061
|
fill: "currentcolor",
|
|
2980
3062
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2981
3063
|
viewBox: "0 0 164.61 164.61",
|
|
2982
|
-
children: /* @__PURE__ */
|
|
3064
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,0ZM59.56,33.71c4.21-1.99,7.72-3.16,12.49-4.16,5.36-1.13,15.44-1.14,20.72-.03,5.7,1.2,12.41,3.7,16.2,6.03l1.12.69-2.58-.13c-5.13-.26-12.6,1.81-20.62,5.71-2.42,1.18-4.52,2.12-4.68,2.09s-2.13-.99-4.38-2.14c-4.49-2.28-11.42-4.73-15.24-5.39-1.34-.23-3.63-.36-5.08-.29-3.16.16-3.02,0,2.05-2.4ZM39.67,113.91c.61,1.61.05,1.01-2-2.14-5-7.67-7.53-15.22-8.74-26.14-.4-3.61-.26-5.67.91-13.07,1.46-9.22,6.72-19.9,13.03-26.46,2.69-2.8,2.93-2.87,6.21-1.76,3.98,1.34,8.23,4.28,14.82,10.24l3.85,3.48-2.1,2.58c-9.75,11.98-20.04,28.95-23.92,39.45-2.11,5.71-2.96,11.44-2.05,13.83ZM118.66,121.41c-1.7,3.26-12.25,9.63-20,12.08-6.39,2.02-14.78,2.87-21.69,2.21-8.25-.79-16.61-3.76-23.79-8.44-6.02-3.93-7.37-5.54-7.37-8.76,0-6.47,7.11-17.8,19.28-30.71,6.91-7.33,16.54-15.93,17.58-15.7,2.02.45,18.2,16.23,24.26,23.66,9.58,11.75,13.98,21.37,11.74,25.66ZM135.23,91.97c-.78,3.99-2.42,9.17-4.02,12.69-1.2,2.63-4.18,7.74-5.49,9.41q-.67.86-.29-.99c.49-2.41-.13-6.84-1.59-11.3-3.17-9.67-13.77-27.66-23.5-39.9l-3.06-3.85,3.31-3.04c4.33-3.97,7.33-6.35,10.57-8.37,2.56-1.59,6.21-3.01,7.79-3.01.97,0,4.38,3.54,7.13,7.4,4.26,5.98,7.4,13.23,8.99,20.78,1.03,4.88,1.11,15.32.17,20.19Z" }) })
|
|
2983
3065
|
}
|
|
2984
3066
|
)
|
|
2985
3067
|
),
|
|
2986
3068
|
DisabledImage: (
|
|
2987
3069
|
/* icon-xbox-disabled.svg */
|
|
2988
|
-
/* @__PURE__ */
|
|
3070
|
+
/* @__PURE__ */ o.jsx(
|
|
2989
3071
|
"svg",
|
|
2990
3072
|
{
|
|
2991
3073
|
className: e,
|
|
2992
3074
|
fill: "currentcolor",
|
|
2993
3075
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2994
3076
|
viewBox: "0 0 164.61 164.61",
|
|
2995
|
-
children: /* @__PURE__ */
|
|
3077
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.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,5c16.21,0,31.26,5.02,43.7,13.58L18.58,126c-8.56-12.44-13.58-27.49-13.58-43.69C5,39.68,39.68,5,82.3,5ZM82.3,159.61c-23.43,0-44.44-10.49-58.63-27L132.61,23.68c16.51,14.19,27,35.2,27,58.63,0,42.63-34.68,77.3-77.3,77.3ZM59.56,33.71c4.21-1.99,7.72-3.16,12.49-4.16,5.36-1.13,15.44-1.14,20.72-.03,2.43.51,5.04,1.26,7.52,2.13l-7.66,7.66c-1.86.73-3.78,1.56-5.74,2.52-2.42,1.18-4.52,2.12-4.68,2.09s-2.13-.99-4.38-2.14c-4.49-2.28-11.42-4.73-15.24-5.39-1.34-.23-3.63-.36-5.08-.29-3.16.16-3.02,0,2.05-2.4ZM28.92,85.63c-.4-3.61-.26-5.67.91-13.07,1.46-9.22,6.72-19.9,13.03-26.46,2.69-2.8,2.93-2.87,6.21-1.76,3.98,1.34,8.23,4.28,14.82,10.24l3.85,3.48-2.1,2.58c-4.61,5.66-9.33,12.45-13.45,19.13l-20.27,20.27c-1.43-4.24-2.38-8.89-2.99-14.4ZM135.06,71.79c1.03,4.88,1.11,15.32.17,20.19-.78,3.99-2.42,9.17-4.02,12.69-1.2,2.63-4.18,7.74-5.49,9.41q-.67.86-.29-.99c.49-2.41-.13-6.84-1.59-11.3-2.86-8.71-11.74-24.17-20.59-36.09l19.19-19.19c1.17,1.28,2.47,2.87,3.64,4.52,4.26,5.98,7.4,13.23,8.99,20.78ZM106.91,95.75c9.58,11.75,13.98,21.37,11.74,25.66-1.7,3.26-12.25,9.63-20,12.08-6.39,2.02-14.78,2.87-21.69,2.21-8.25-.79-16.61-3.76-23.79-8.44-3.42-2.23-5.33-3.71-6.34-5.17l43.56-43.56c5.67,5.35,12.91,12.78,16.53,17.22Z" }) })
|
|
2996
3078
|
}
|
|
2997
3079
|
)
|
|
2998
3080
|
),
|
|
2999
3081
|
EnabledImage: (
|
|
3000
3082
|
/* icon-xbox-enabled.svg */
|
|
3001
|
-
/* @__PURE__ */
|
|
3083
|
+
/* @__PURE__ */ o.jsx(
|
|
3002
3084
|
"svg",
|
|
3003
3085
|
{
|
|
3004
3086
|
className: e,
|
|
3005
3087
|
fill: "currentcolor",
|
|
3006
3088
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3007
3089
|
viewBox: "0 0 164.61 164.61",
|
|
3008
|
-
children: /* @__PURE__ */
|
|
3090
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M76.96,135.7c-8.25-.79-16.61-3.76-23.79-8.44-6.02-3.93-7.37-5.54-7.37-8.76,0-6.47,7.11-17.8,19.28-30.71,6.91-7.33,16.54-15.93,17.58-15.7,2.02.45,18.2,16.23,24.26,23.66,9.58,11.75,13.98,21.37,11.74,25.66-1.7,3.26-12.25,9.63-20,12.08-6.39,2.02-14.78,2.87-21.69,2.21h0ZM37.67,111.77c-5-7.67-7.53-15.22-8.74-26.14-.4-3.61-.26-5.67.91-13.07,1.46-9.22,6.72-19.9,13.03-26.46,2.69-2.8,2.93-2.87,6.21-1.76,3.98,1.34,8.23,4.28,14.82,10.24l3.85,3.48-2.1,2.58c-9.75,11.98-20.04,28.95-23.92,39.45-2.11,5.71-2.96,11.44-2.05,13.83.61,1.61.05,1.01-2-2.14ZM125.42,113.08c.49-2.41-.13-6.84-1.59-11.3-3.17-9.67-13.77-27.66-23.5-39.9l-3.06-3.85,3.31-3.04c4.33-3.97,7.33-6.35,10.57-8.37,2.56-1.59,6.21-3.01,7.79-3.01.97,0,4.38,3.54,7.13,7.4,4.26,5.98,7.4,13.23,8.99,20.78,1.03,4.88,1.11,15.32.17,20.19-.78,3.99-2.42,9.17-4.02,12.69-1.2,2.63-4.18,7.74-5.49,9.41q-.67.86-.29-.99h0ZM77.84,41.78c-4.49-2.28-11.42-4.73-15.24-5.39-1.34-.23-3.63-.36-5.08-.29-3.16.16-3.02,0,2.05-2.4,4.21-1.99,7.72-3.16,12.49-4.16,5.36-1.13,15.44-1.14,20.72-.03,5.7,1.2,12.41,3.7,16.2,6.03l1.12.69-2.58-.13c-5.13-.26-12.6,1.81-20.62,5.71-2.42,1.18-4.52,2.12-4.68,2.09-.15-.03-2.13-.99-4.38-2.14ZM82.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" }) })
|
|
3009
3091
|
}
|
|
3010
3092
|
)
|
|
3011
3093
|
),
|
|
3012
3094
|
active: t,
|
|
3013
3095
|
disabled: s
|
|
3014
3096
|
}
|
|
3015
|
-
),
|
|
3097
|
+
), y8 = ({
|
|
3016
3098
|
active: t,
|
|
3017
3099
|
className: e = "",
|
|
3018
3100
|
disabled: s
|
|
3019
|
-
}) => /* @__PURE__ */
|
|
3020
|
-
|
|
3101
|
+
}) => /* @__PURE__ */ o.jsx(
|
|
3102
|
+
m,
|
|
3021
3103
|
{
|
|
3022
3104
|
ActiveImage: (
|
|
3023
3105
|
/* icon-mic-active.svg */
|
|
3024
|
-
/* @__PURE__ */
|
|
3106
|
+
/* @__PURE__ */ o.jsx(
|
|
3025
3107
|
"svg",
|
|
3026
3108
|
{
|
|
3027
3109
|
className: e,
|
|
3028
3110
|
fill: "currentcolor",
|
|
3029
3111
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3030
3112
|
viewBox: "0 0 164.61 164.61",
|
|
3031
|
-
children: /* @__PURE__ */
|
|
3113
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM64.9,44.59c0-4.83,1.69-8.94,5.08-12.33,3.38-3.38,7.49-5.08,12.33-5.08s8.94,1.69,12.33,5.08c3.38,3.38,5.08,7.49,5.08,12.33v34.81c0,4.83-1.69,8.94-5.08,12.33s-7.49,5.08-12.33,5.08-8.94-1.69-12.33-5.08-5.08-7.49-5.08-12.33v-34.81ZM113.05,106.09c-6.58,7.64-14.89,12.14-24.95,13.49v17.84h-11.6v-17.84c-10.06-1.35-18.37-5.85-24.95-13.49-6.58-7.64-9.86-16.54-9.86-26.69h11.6c0,8.03,2.83,14.87,8.49,20.52s12.5,8.49,20.52,8.49,14.87-2.83,20.52-8.49,8.49-12.5,8.49-20.52h11.6c0,10.15-3.29,19.05-9.86,26.69Z" }) })
|
|
3032
3114
|
}
|
|
3033
3115
|
)
|
|
3034
3116
|
),
|
|
3035
3117
|
DisabledImage: (
|
|
3036
3118
|
/* icon-mic-disabled.svg */
|
|
3037
|
-
/* @__PURE__ */
|
|
3119
|
+
/* @__PURE__ */ o.jsx(
|
|
3038
3120
|
"svg",
|
|
3039
3121
|
{
|
|
3040
3122
|
className: e,
|
|
3041
3123
|
fill: "currentcolor",
|
|
3042
3124
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3043
3125
|
viewBox: "0 0 164.61 164.61",
|
|
3044
|
-
children: /* @__PURE__ */
|
|
3126
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM82.3,5c19.83,0,37.93,7.51,51.63,19.83L24.82,133.93c-12.32-13.7-19.82-31.8-19.82-51.63C5,39.68,39.68,5,82.3,5ZM82.3,159.61c-19.83,0-37.93-7.51-51.63-19.83L139.78,30.68c12.32,13.7,19.83,31.8,19.83,51.63,0,42.63-34.68,77.3-77.3,77.3ZM94.63,91.73c-2.26,2.26-4.86,3.75-7.78,4.5l12.28-12.28c-.75,2.91-2.24,5.51-4.5,7.78ZM64.98,81.15c-.05-.57-.08-1.15-.08-1.74v-34.81c0-4.83,1.69-8.94,5.08-12.33s7.49-5.08,12.33-5.08,8.94,1.69,12.33,5.08,5.08,7.49,5.08,12.33v1.82l-34.73,34.73ZM111.31,79.4h11.6c0,10.15-3.29,19.05-9.86,26.69-6.58,7.64-14.89,12.14-24.95,13.49v17.84h-11.6v-17.84c-3.65-.49-7.07-1.4-10.27-2.72l9.2-9.2c2.18.5,4.47.76,6.86.76,8.03,0,14.87-2.83,20.52-8.49s8.49-12.5,8.49-20.52ZM46.79,99.33c-3.39-6-5.1-12.64-5.1-19.93h11.6c0,4.06.72,7.81,2.17,11.26l-8.67,8.67Z" }) })
|
|
3045
3127
|
}
|
|
3046
3128
|
)
|
|
3047
3129
|
),
|
|
3048
3130
|
EnabledImage: (
|
|
3049
3131
|
/* icon-mic-enabled.svg */
|
|
3050
|
-
/* @__PURE__ */
|
|
3132
|
+
/* @__PURE__ */ o.jsx(
|
|
3051
3133
|
"svg",
|
|
3052
3134
|
{
|
|
3053
3135
|
className: e,
|
|
3054
3136
|
fill: "currentcolor",
|
|
3055
3137
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3056
3138
|
viewBox: "0 0 164.61 164.61",
|
|
3057
|
-
children: /* @__PURE__ */
|
|
3139
|
+
children: /* @__PURE__ */ o.jsx("g", { children: /* @__PURE__ */ o.jsx("path", { d: "M82.3,96.81c-4.83,0-8.94-1.69-12.33-5.08-3.38-3.38-5.08-7.49-5.08-12.33v-34.81c0-4.83,1.69-8.94,5.08-12.33s7.49-5.08,12.33-5.08,8.94,1.69,12.33,5.08,5.08,7.49,5.08,12.33v34.81c0,4.83-1.69,8.94-5.08,12.33-3.38,3.38-7.49,5.08-12.33,5.08ZM76.5,137.42v-17.84c-10.06-1.35-18.37-5.85-24.95-13.49-6.58-7.64-9.86-16.54-9.86-26.69h11.6c0,8.03,2.83,14.87,8.49,20.52s12.5,8.49,20.52,8.49,14.87-2.83,20.52-8.49,8.49-12.5,8.49-20.52h11.6c0,10.15-3.29,19.05-9.86,26.69-6.58,7.64-14.89,12.14-24.95,13.49v17.84h-11.6ZM82.3,164.61C36.92,164.61,0,127.69,0,82.3S36.92,0,82.3,0s82.3,36.92,82.3,82.3-36.92,82.3-82.3,82.3ZM82.3,5C39.68,5,5,39.68,5,82.3s34.68,77.3,77.3,77.3,77.3-34.68,77.3-77.3S124.93,5,82.3,5Z" }) })
|
|
3058
3140
|
}
|
|
3059
3141
|
)
|
|
3060
3142
|
),
|
|
3061
3143
|
active: t,
|
|
3062
3144
|
disabled: s
|
|
3063
3145
|
}
|
|
3064
|
-
),
|
|
3065
|
-
Alert:
|
|
3066
|
-
Camera:
|
|
3067
|
-
DownArrow:
|
|
3068
|
-
Ban:
|
|
3069
|
-
Check:
|
|
3070
|
-
Controller:
|
|
3071
|
-
Elipses:
|
|
3072
|
-
Flag:
|
|
3073
|
-
Gear:
|
|
3074
|
-
Glass:
|
|
3075
|
-
Hdmi:
|
|
3076
|
-
Laptop:
|
|
3077
|
-
LeftArrow:
|
|
3078
|
-
Light:
|
|
3079
|
-
Mic:
|
|
3080
|
-
Moon:
|
|
3081
|
-
Playstation:
|
|
3082
|
-
Podium:
|
|
3083
|
-
Power:
|
|
3084
|
-
Privacy:
|
|
3085
|
-
Question:
|
|
3086
|
-
RightArrow:
|
|
3087
|
-
RoomPC:
|
|
3088
|
-
Shade:
|
|
3089
|
-
Sun:
|
|
3090
|
-
UpArrow:
|
|
3091
|
-
VolDown:
|
|
3092
|
-
VolMute:
|
|
3093
|
-
VolUp:
|
|
3094
|
-
Wireless:
|
|
3095
|
-
X:
|
|
3096
|
-
Xbox:
|
|
3146
|
+
), R8 = {
|
|
3147
|
+
Alert: J2,
|
|
3148
|
+
Camera: Q2,
|
|
3149
|
+
DownArrow: t8,
|
|
3150
|
+
Ban: X2,
|
|
3151
|
+
Check: N2,
|
|
3152
|
+
Controller: e8,
|
|
3153
|
+
Elipses: o8,
|
|
3154
|
+
Flag: s8,
|
|
3155
|
+
Gear: n8,
|
|
3156
|
+
Glass: c8,
|
|
3157
|
+
Hdmi: r8,
|
|
3158
|
+
Laptop: l8,
|
|
3159
|
+
LeftArrow: i8,
|
|
3160
|
+
Light: a8,
|
|
3161
|
+
Mic: y8,
|
|
3162
|
+
Moon: u8,
|
|
3163
|
+
Playstation: d8,
|
|
3164
|
+
Podium: h8,
|
|
3165
|
+
Power: v8,
|
|
3166
|
+
Privacy: g8,
|
|
3167
|
+
Question: f8,
|
|
3168
|
+
RightArrow: w8,
|
|
3169
|
+
RoomPC: p8,
|
|
3170
|
+
Shade: x8,
|
|
3171
|
+
Sun: M8,
|
|
3172
|
+
UpArrow: m8,
|
|
3173
|
+
VolDown: Z8,
|
|
3174
|
+
VolMute: j8,
|
|
3175
|
+
VolUp: C8,
|
|
3176
|
+
Wireless: S8,
|
|
3177
|
+
X: b8,
|
|
3178
|
+
Xbox: I8
|
|
3097
3179
|
};
|
|
3098
|
-
function
|
|
3180
|
+
function te({
|
|
3099
3181
|
name: t,
|
|
3100
|
-
iconsDictionary: e =
|
|
3182
|
+
iconsDictionary: e = R8,
|
|
3101
3183
|
...s
|
|
3102
3184
|
}) {
|
|
3103
3185
|
const c = e[t] ?? null;
|
|
3104
|
-
return c || console.error(`Icon ${t} not found in dictionary`), /* @__PURE__ */
|
|
3186
|
+
return c || console.error(`Icon ${t} not found in dictionary`), /* @__PURE__ */ o.jsx(z2, { multiIcon: c, ...s });
|
|
3105
3187
|
}
|
|
3106
|
-
const
|
|
3107
|
-
grid:
|
|
3108
|
-
header:
|
|
3109
|
-
content:
|
|
3110
|
-
footer:
|
|
3111
|
-
volume:
|
|
3112
|
-
},
|
|
3113
|
-
/* @__PURE__ */
|
|
3114
|
-
/* @__PURE__ */
|
|
3115
|
-
|
|
3116
|
-
/* @__PURE__ */
|
|
3117
|
-
] }),
|
|
3118
|
-
grid:
|
|
3119
|
-
header:
|
|
3120
|
-
content:
|
|
3188
|
+
const E8 = "_grid_1cmpp_1", _8 = "_header_1cmpp_11", L8 = "_content_1cmpp_17", $8 = "_footer_1cmpp_23", T8 = "_volume_1cmpp_29", a1 = {
|
|
3189
|
+
grid: E8,
|
|
3190
|
+
header: _8,
|
|
3191
|
+
content: L8,
|
|
3192
|
+
footer: $8,
|
|
3193
|
+
volume: T8
|
|
3194
|
+
}, oe = ({ header: t, footer: e, content: s, volume: c, showVolume: r }) => /* @__PURE__ */ o.jsxs("div", { className: a1.grid, children: [
|
|
3195
|
+
/* @__PURE__ */ o.jsx("div", { className: a1.header, children: t }),
|
|
3196
|
+
/* @__PURE__ */ o.jsx("div", { className: a1.content, children: s }),
|
|
3197
|
+
r && /* @__PURE__ */ o.jsx("div", { className: a1.volume, children: c }),
|
|
3198
|
+
/* @__PURE__ */ o.jsx("div", { className: a1.footer, children: e })
|
|
3199
|
+
] }), D8 = "_grid_11w5q_1", A8 = "_header_11w5q_11", P8 = "_content_11w5q_17", p1 = {
|
|
3200
|
+
grid: D8,
|
|
3201
|
+
header: A8,
|
|
3202
|
+
content: P8,
|
|
3121
3203
|
"left-nav": "_left-nav_11w5q_23"
|
|
3122
|
-
},
|
|
3123
|
-
/* @__PURE__ */
|
|
3124
|
-
c && /* @__PURE__ */
|
|
3125
|
-
/* @__PURE__ */
|
|
3126
|
-
] }),
|
|
3127
|
-
grid:
|
|
3128
|
-
header:
|
|
3129
|
-
content:
|
|
3130
|
-
},
|
|
3131
|
-
/* @__PURE__ */
|
|
3132
|
-
/* @__PURE__ */
|
|
3204
|
+
}, se = ({ className: t, header: e, content: s, leftNav: c }) => /* @__PURE__ */ o.jsxs("div", { className: `${t} ${p1.grid}`, children: [
|
|
3205
|
+
/* @__PURE__ */ o.jsx("div", { className: p1.header, children: e }),
|
|
3206
|
+
c && /* @__PURE__ */ o.jsx("div", { className: p1.leftNav, children: c }),
|
|
3207
|
+
/* @__PURE__ */ o.jsx("div", { className: p1.content, children: s })
|
|
3208
|
+
] }), B8 = "_grid_1uwfo_1", O8 = "_header_1uwfo_11", V8 = "_content_1uwfo_17", L1 = {
|
|
3209
|
+
grid: B8,
|
|
3210
|
+
header: O8,
|
|
3211
|
+
content: V8
|
|
3212
|
+
}, ne = ({ className: t, header: e, content: s }) => /* @__PURE__ */ o.jsxs("div", { className: `${t} ${L1.grid}`, children: [
|
|
3213
|
+
/* @__PURE__ */ o.jsx("div", { className: L1.header, children: e }),
|
|
3214
|
+
/* @__PURE__ */ o.jsx("div", { className: L1.content, children: s })
|
|
3133
3215
|
] });
|
|
3134
|
-
function
|
|
3216
|
+
function ce() {
|
|
3135
3217
|
return console.log(location.pathname), location.pathname;
|
|
3136
3218
|
}
|
|
3137
|
-
var
|
|
3138
|
-
class
|
|
3219
|
+
var k8 = /* @__PURE__ */ ((t) => (t[t.NotSet = 0] = "NotSet", t[t.Sunday = 1] = "Sunday", t[t.Monday = 2] = "Monday", t[t.Tuesday = 4] = "Tuesday", t[t.Wednesday = 8] = "Wednesday", t[t.Thursday = 16] = "Thursday", t[t.Friday = 32] = "Friday", t[t.Saturday = 64] = "Saturday", t))(k8 || {});
|
|
3220
|
+
class re {
|
|
3139
3221
|
constructor(e, s) {
|
|
3140
|
-
|
|
3141
|
-
|
|
3222
|
+
D(this, "path");
|
|
3223
|
+
D(this, "handler");
|
|
3142
3224
|
this.path = e, this.handler = s;
|
|
3143
3225
|
}
|
|
3144
3226
|
}
|
|
3145
|
-
const
|
|
3146
|
-
class
|
|
3227
|
+
const le = "$off";
|
|
3228
|
+
class ie {
|
|
3147
3229
|
constructor() {
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3230
|
+
D(this, "name", "");
|
|
3231
|
+
D(this, "iconUrl", "");
|
|
3232
|
+
D(this, "channel", "");
|
|
3151
3233
|
}
|
|
3152
3234
|
}
|
|
3153
|
-
class
|
|
3235
|
+
class ae {
|
|
3154
3236
|
constructor() {
|
|
3155
|
-
|
|
3156
|
-
|
|
3237
|
+
D(this, "deviceKey");
|
|
3238
|
+
D(this, "deviceType");
|
|
3157
3239
|
}
|
|
3158
3240
|
}
|
|
3159
|
-
class
|
|
3241
|
+
class ue {
|
|
3160
3242
|
constructor() {
|
|
3161
|
-
|
|
3162
|
-
|
|
3243
|
+
D(this, "deviceKey");
|
|
3244
|
+
D(this, "deviceType");
|
|
3163
3245
|
}
|
|
3164
3246
|
}
|
|
3165
|
-
class
|
|
3247
|
+
class de {
|
|
3166
3248
|
constructor() {
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3249
|
+
D(this, "currentShareText");
|
|
3250
|
+
D(this, "enabled");
|
|
3251
|
+
D(this, "isSharing");
|
|
3170
3252
|
}
|
|
3171
3253
|
}
|
|
3172
3254
|
export {
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
|
|
3243
|
-
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
X8 as
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3255
|
+
ue as AccessoryDeviceConfiguration,
|
|
3256
|
+
R6 as Clock,
|
|
3257
|
+
k8 as DaysOfWeek,
|
|
3258
|
+
ae as EnvironmentalDeviceConfiguration,
|
|
3259
|
+
ee as ErrorBox,
|
|
3260
|
+
z2 as IconButton,
|
|
3261
|
+
J2 as IconMultiAlert,
|
|
3262
|
+
X2 as IconMultiBan,
|
|
3263
|
+
Q2 as IconMultiCamera,
|
|
3264
|
+
N2 as IconMultiCheck,
|
|
3265
|
+
e8 as IconMultiController,
|
|
3266
|
+
t8 as IconMultiDownArrow,
|
|
3267
|
+
o8 as IconMultiElipses,
|
|
3268
|
+
s8 as IconMultiFlag,
|
|
3269
|
+
n8 as IconMultiGear,
|
|
3270
|
+
c8 as IconMultiGlass,
|
|
3271
|
+
r8 as IconMultiHdmi,
|
|
3272
|
+
l8 as IconMultiLaptop,
|
|
3273
|
+
i8 as IconMultiLeftArrow,
|
|
3274
|
+
a8 as IconMultiLight,
|
|
3275
|
+
u8 as IconMultiMoon,
|
|
3276
|
+
d8 as IconMultiPlaystation,
|
|
3277
|
+
h8 as IconMultiPodium,
|
|
3278
|
+
v8 as IconMultiPower,
|
|
3279
|
+
g8 as IconMultiPrivacy,
|
|
3280
|
+
f8 as IconMultiQuestion,
|
|
3281
|
+
w8 as IconMultiRightArrow,
|
|
3282
|
+
p8 as IconMultiRoomPC,
|
|
3283
|
+
x8 as IconMultiShade,
|
|
3284
|
+
M8 as IconMultiSun,
|
|
3285
|
+
m8 as IconMultiUpArrow,
|
|
3286
|
+
Z8 as IconMultiVolDown,
|
|
3287
|
+
j8 as IconMultiVolMute,
|
|
3288
|
+
C8 as IconMultiVolUp,
|
|
3289
|
+
S8 as IconMultiWireless,
|
|
3290
|
+
b8 as IconMultiX,
|
|
3291
|
+
I8 as IconMultiXbox,
|
|
3292
|
+
oe as MainLayout,
|
|
3293
|
+
re as MessageHandler,
|
|
3294
|
+
x6 as MobileControlProvider,
|
|
3295
|
+
m as MultiStateIconContainer,
|
|
3296
|
+
te as NamedIconButton,
|
|
3297
|
+
ie as PresetChannel,
|
|
3298
|
+
de as ShareState,
|
|
3299
|
+
se as TechLayout,
|
|
3300
|
+
ne as TechPinLayout,
|
|
3301
|
+
ce as getBaseLocation,
|
|
3302
|
+
T1 as httpClient,
|
|
3303
|
+
le as roomOffSourceKey,
|
|
3304
|
+
C as store,
|
|
3305
|
+
q as uiActions,
|
|
3306
|
+
x2 as uiReducer,
|
|
3307
|
+
q8 as useApiPath,
|
|
3308
|
+
m2 as useAppConfig,
|
|
3309
|
+
$2 as useAppDispatch,
|
|
3310
|
+
m6 as useAvrControl,
|
|
3311
|
+
I2 as useClientId,
|
|
3312
|
+
H2 as useDeviceIBasicVolumeWithFeedback,
|
|
3313
|
+
Z6 as useEndpoint,
|
|
3314
|
+
_2 as useError,
|
|
3315
|
+
z6 as useGetAllDeviceStateFromRoomConfiguration,
|
|
3316
|
+
Z2 as useGetAllDevices,
|
|
3317
|
+
w6 as useGetCurrentPopoverIdForGroup,
|
|
3318
|
+
$ as useGetDevice,
|
|
3319
|
+
M6 as useGetIBasicVolumeWithFeedback,
|
|
3320
|
+
a6 as useGetRoomDisplayStates,
|
|
3321
|
+
u6 as useGetZoomRoomControllerKey,
|
|
3322
|
+
Z3 as useIBasicVolumeWithFeedback,
|
|
3323
|
+
j6 as useIChannelMessenger,
|
|
3324
|
+
C6 as useIColor,
|
|
3325
|
+
S6 as useICommunicationMonitor,
|
|
3326
|
+
b6 as useIDPad,
|
|
3327
|
+
I6 as useIDeviceInfoMessenger,
|
|
3328
|
+
y6 as useIDvr,
|
|
3329
|
+
E6 as useIEssentialsRoomCombiner,
|
|
3330
|
+
j3 as useIHasPowerControl,
|
|
3331
|
+
A1 as useIHasSelectableItems,
|
|
3332
|
+
_6 as useILevelControls,
|
|
3333
|
+
L6 as useILightingScenes,
|
|
3334
|
+
$6 as useIMatrixRouting,
|
|
3335
|
+
T6 as useIMcCiscoCodecUserInterfaceAppControl,
|
|
3336
|
+
D6 as useINumeric,
|
|
3337
|
+
A6 as useIProjectorScreenLiftControl,
|
|
3338
|
+
P6 as useIRoomEventSchedule,
|
|
3339
|
+
q6 as useIRunDefaultPresentRoute,
|
|
3340
|
+
B6 as useIRunDirectRouteAction,
|
|
3341
|
+
O6 as useIRunRouteAction,
|
|
3342
|
+
V6 as useISetTopBoxControls,
|
|
3343
|
+
k6 as useIShadesOpenCloseStop,
|
|
3344
|
+
U6 as useIShutdownPromptTimer,
|
|
3345
|
+
F6 as useISwitchedOutput,
|
|
3346
|
+
W6 as useITechPassword,
|
|
3347
|
+
Y6 as useITheme,
|
|
3348
|
+
H6 as useITransport,
|
|
3349
|
+
T2 as useInitialize,
|
|
3350
|
+
h6 as useIsTouchpanel,
|
|
3351
|
+
K6 as useMobileControlTouchpanelController,
|
|
3352
|
+
Q6 as useOverflow,
|
|
3353
|
+
W2 as usePressHoldRelease,
|
|
3354
|
+
l6 as useRoomAdvancedSharingActive,
|
|
3355
|
+
o6 as useRoomCodecContentDestinationKey,
|
|
3356
|
+
Y8 as useRoomConfiguration,
|
|
3357
|
+
N8 as useRoomDestinationList,
|
|
3358
|
+
Q8 as useRoomDestinations,
|
|
3359
|
+
e6 as useRoomEnvironmentalDevices,
|
|
3360
|
+
J6 as useRoomIBasicVolumeWithFeedback,
|
|
3361
|
+
s6 as useRoomInCall,
|
|
3362
|
+
c6 as useRoomIsCoolingDown,
|
|
3363
|
+
r6 as useRoomIsOn,
|
|
3364
|
+
n6 as useRoomIsWarmingUp,
|
|
3365
|
+
b2 as useRoomKey,
|
|
3366
|
+
X8 as useRoomLevelControlList,
|
|
3367
|
+
C2 as useRoomLevelControls,
|
|
3368
|
+
z8 as useRoomName,
|
|
3369
|
+
t6 as useRoomProgramAudioDestinationKey,
|
|
3370
|
+
i6 as useRoomShareState,
|
|
3371
|
+
J8 as useRoomSourceList,
|
|
3372
|
+
P1 as useRoomState,
|
|
3373
|
+
j2 as useRoomVolume,
|
|
3374
|
+
N6 as useScroll,
|
|
3375
|
+
E2 as useServerIsRunningOnProcessorHardware,
|
|
3376
|
+
g6 as useShowIncomingCallModal,
|
|
3377
|
+
f6 as useShowModal,
|
|
3378
|
+
p6 as useShowPopoverById,
|
|
3379
|
+
L2 as useShowReconnect,
|
|
3380
|
+
v6 as useShowShutdownModal,
|
|
3381
|
+
y2 as useSystemUuid,
|
|
3382
|
+
X6 as useTimeAndDate,
|
|
3383
|
+
d6 as useTouchpanelKey,
|
|
3384
|
+
G6 as useTwoWayDisplayBase,
|
|
3385
|
+
R2 as useUserCode,
|
|
3294
3386
|
I as useWebsocketContext,
|
|
3295
|
-
|
|
3387
|
+
S2 as useWsIsConnected
|
|
3296
3388
|
};
|