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