@ray-js/ipc-player-integration 0.0.29-beta.2 → 0.0.29-beta.21
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/lib/ctx/ctx.composition.d.ts +9 -3
- package/lib/ctx/ctx.composition.js +43 -1
- package/lib/ctx/ctx.js +5 -0
- package/lib/ctx/multiCameraCtx.d.ts +40 -5
- package/lib/ctx/multiCameraCtx.js +166 -20
- package/lib/features/initPlayerWidgets/index.d.ts +7 -1
- package/lib/features/initPlayerWidgets/index.js +14 -11
- package/lib/hooks/index.d.ts +2 -0
- package/lib/hooks/index.js +3 -1
- package/lib/hooks/useDpSupport/index.d.ts +6 -0
- package/lib/hooks/useDpSupport/index.js +47 -0
- package/lib/hooks/useSignal4G/index.d.ts +2 -0
- package/lib/hooks/useSignal4G/index.js +35 -0
- package/lib/index.d.ts +2 -1
- package/lib/index.js +2 -1
- package/lib/interface.d.ts +43 -2
- package/lib/ports.output.d.ts +4 -0
- package/lib/ports.output.js +3 -1
- package/lib/res/index.d.ts +1 -0
- package/lib/res/index.js +21 -1
- package/lib/res/svg/signalFour0.svg +1 -0
- package/lib/res/svg/signalFour1.svg +1 -0
- package/lib/res/svg/signalFour2.svg +1 -0
- package/lib/res/svg/signalFour3.svg +1 -0
- package/lib/res/svg/signalFour4.svg +1 -0
- package/lib/res/svg/signalThree0.svg +1 -0
- package/lib/res/svg/signalThree1.svg +1 -0
- package/lib/res/svg/signalThree2.svg +1 -0
- package/lib/res/svg/signalThree3.svg +1 -0
- package/lib/svg-module.d.ts +4 -0
- package/lib/ui/constant.d.ts +20 -0
- package/lib/ui/constant.js +21 -0
- package/lib/ui/index.d.ts +2 -0
- package/lib/ui/index.js +3 -1
- package/lib/ui/ui.d.ts +2 -0
- package/lib/ui/ui.js +130 -38
- package/lib/ui/ui.less +33 -4
- package/lib/ui/widgetClick.d.ts +2 -0
- package/lib/ui/widgetClick.js +2 -0
- package/lib/utils/content/dpCode.d.ts +5 -0
- package/lib/utils/content/dpCode.js +11 -1
- package/lib/utils/index.d.ts +2 -0
- package/lib/utils/index.js +12 -1
- package/lib/utils/videoSplitHelper.d.ts +18 -0
- package/lib/utils/videoSplitHelper.js +48 -0
- package/lib/widgets/fullScreen/fullScreen.js +6 -4
- package/lib/widgets/fullScreen/fullTravelRouteControl.js +4 -1
- package/lib/widgets/fullScreen/fullVoiceIntercom.js +5 -2
- package/lib/widgets/fullScreen/verticalScreen.js +1 -1
- package/lib/widgets/fullSmallIntercom/fullSmallIntercom.js +4 -1
- package/lib/widgets/index.d.ts +2 -0
- package/lib/widgets/index.js +3 -1
- package/lib/widgets/moveInteractiveControl/controlButton.js +4 -1
- package/lib/widgets/moveInteractiveControl/moveInteractiveControl.js +7 -1
- package/lib/widgets/multiCamera/index.less +28 -5
- package/lib/widgets/multiCamera/moveablePtzControl.js +229 -47
- package/lib/widgets/multiCamera/tileActions.js +2 -2
- package/lib/widgets/muted/muted.js +12 -11
- package/lib/widgets/ptz/ptz.js +4 -1
- package/lib/widgets/ptzControlTip/ptzControlTip.js +4 -1
- package/lib/widgets/recordVideo/recordVideo.js +6 -1
- package/lib/widgets/resolution/fullResolutionControl.js +10 -2
- package/lib/widgets/resolution/resolution.js +4 -1
- package/lib/widgets/screenshot/screenshot.js +6 -1
- package/lib/widgets/signal4G/index.d.ts +1 -0
- package/lib/widgets/signal4G/index.js +1 -0
- package/lib/widgets/signal4G/signal4G.d.ts +8 -0
- package/lib/widgets/signal4G/signal4G.js +28 -0
- package/lib/widgets/signal4G/signal4G.less +15 -0
- package/lib/widgets/toggleVerticalFull/index.d.ts +1 -0
- package/lib/widgets/toggleVerticalFull/index.js +1 -0
- package/lib/widgets/toggleVerticalFull/toggleVerticalFull.d.ts +8 -0
- package/lib/widgets/toggleVerticalFull/toggleVerticalFull.js +32 -0
- package/lib/widgets/toggleVerticalFull/toggleVerticalFull.less +4 -0
- package/lib/widgets/verticalSmallIntercom/verticalSmallIntercom.js +4 -1
- package/lib/widgets/voiceIntercom/voiceIntercom.js +18 -21
- package/lib/widgets/voiceIntercom/voiceIntercom.less +85 -0
- package/package.json +6 -7
- package/lib/features/initPlayerWidgets/multiCamera.d.ts +0 -8
- package/lib/features/initPlayerWidgets/multiCamera.js +0 -78
- package/lib/widgets/battery/battery.composition.d.ts +0 -155
- package/lib/widgets/voiceIntercom/voiceIntercom.d.ts +0 -93
package/lib/interface.d.ts
CHANGED
|
@@ -53,6 +53,8 @@ export type UseCtx = (options: {
|
|
|
53
53
|
saveToAlbum: 0 | 1;
|
|
54
54
|
showPtzControlTip: boolean;
|
|
55
55
|
screenType: RetAtom<ScreenType>;
|
|
56
|
+
isVerticalFullLayout: RetAtom<boolean>;
|
|
57
|
+
setIsVerticalFullLayout: (value: boolean) => void;
|
|
56
58
|
recording: RetAtom<boolean>;
|
|
57
59
|
recordingDisabled: RetAtom<boolean>;
|
|
58
60
|
mute: RetAtom<boolean>;
|
|
@@ -191,9 +193,48 @@ export type MultiCameraLenInfo = {
|
|
|
191
193
|
/**
|
|
192
194
|
* 多目分割协议
|
|
193
195
|
*/
|
|
196
|
+
export type VideoSplitDirection = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
197
|
+
export type VideoSplitLensType = 0 | 1;
|
|
198
|
+
export type VideoSplitInfoItem = {
|
|
199
|
+
/**
|
|
200
|
+
* 镜头序号,从 1 开始顺序递增
|
|
201
|
+
*/
|
|
202
|
+
index: number;
|
|
203
|
+
/**
|
|
204
|
+
* X 维数组,表示在标清、高清等不同分辨率下该摄像头位置信息,格式为 [x, y, w, h]
|
|
205
|
+
*/
|
|
206
|
+
res_pos: [number, number, number, number][];
|
|
207
|
+
/**
|
|
208
|
+
* 镜头类型,0:球机;1:枪机。0 表示支持云台控制
|
|
209
|
+
*/
|
|
210
|
+
lens_type: VideoSplitLensType;
|
|
211
|
+
/**
|
|
212
|
+
* 是否支持变焦,0:不支持;1:支持
|
|
213
|
+
*/
|
|
214
|
+
zoom_enable: 0 | 1;
|
|
215
|
+
/**
|
|
216
|
+
* 支持的控制方向,共 8 个:
|
|
217
|
+
* 0-上,1-右上,2-右,3-右下,4-下,5-左下,6-左,7-左上
|
|
218
|
+
*/
|
|
219
|
+
support_directions: VideoSplitDirection[];
|
|
220
|
+
};
|
|
221
|
+
export type VideoSplitAlignInfo = {
|
|
222
|
+
/**
|
|
223
|
+
* 二维数组,排布窗口并列一排放在同一个数组中
|
|
224
|
+
*/
|
|
225
|
+
align_group: number[][];
|
|
226
|
+
/**
|
|
227
|
+
* 一维数组,用于标记展示定位框的位置
|
|
228
|
+
*/
|
|
229
|
+
localizer_group: number[];
|
|
230
|
+
/**
|
|
231
|
+
* 一维数组,用于标记枪球联动的镜头
|
|
232
|
+
*/
|
|
233
|
+
linked_group: number[];
|
|
234
|
+
};
|
|
194
235
|
export type VideoSplitProtocol = {
|
|
195
236
|
total_split_num: number;
|
|
196
|
-
split_info:
|
|
197
|
-
align_info:
|
|
237
|
+
split_info: VideoSplitInfoItem[];
|
|
238
|
+
align_info: VideoSplitAlignInfo;
|
|
198
239
|
p_v: number;
|
|
199
240
|
};
|
package/lib/ports.output.d.ts
CHANGED
|
@@ -6,6 +6,10 @@ export type UseBattery = (devId: string) => {
|
|
|
6
6
|
export type UsePtz = (devId: string) => boolean;
|
|
7
7
|
export type UseTemperature = (devId: string) => number;
|
|
8
8
|
export type UseHumidity = () => number;
|
|
9
|
+
export type UseSignal4G = (devId: string) => {
|
|
10
|
+
dpValue: string;
|
|
11
|
+
signalKey: string;
|
|
12
|
+
};
|
|
9
13
|
export type Toast = (options: {
|
|
10
14
|
title: string;
|
|
11
15
|
duration?: number;
|
package/lib/ports.output.js
CHANGED
package/lib/res/index.d.ts
CHANGED
package/lib/res/index.js
CHANGED
|
@@ -1,2 +1,22 @@
|
|
|
1
1
|
import playerPtzControlTip from './player_ptz_control_tip.png';
|
|
2
|
-
|
|
2
|
+
import signalFour0 from './svg/signalFour0.svg';
|
|
3
|
+
import signalFour1 from './svg/signalFour1.svg';
|
|
4
|
+
import signalFour2 from './svg/signalFour2.svg';
|
|
5
|
+
import signalFour3 from './svg/signalFour3.svg';
|
|
6
|
+
import signalFour4 from './svg/signalFour4.svg';
|
|
7
|
+
import signalThree0 from './svg/signalThree0.svg';
|
|
8
|
+
import signalThree1 from './svg/signalThree1.svg';
|
|
9
|
+
import signalThree2 from './svg/signalThree2.svg';
|
|
10
|
+
import signalThree3 from './svg/signalThree3.svg';
|
|
11
|
+
export { playerPtzControlTip };
|
|
12
|
+
export const signalSvgMap = {
|
|
13
|
+
signalFour0,
|
|
14
|
+
signalFour1,
|
|
15
|
+
signalFour2,
|
|
16
|
+
signalFour3,
|
|
17
|
+
signalFour4,
|
|
18
|
+
signalThree0,
|
|
19
|
+
signalThree1,
|
|
20
|
+
signalThree2,
|
|
21
|
+
signalThree3
|
|
22
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="20" height="20" viewBox="0 0 20 20"><g><g></g><g><path d="M5,14.50000006L5,15.5C5,15.7761424,4.7761423999999995,16,4.5,16L3.5,16C3.22385764,16,3,15.7761424,3,15.5L3,14.5C3,14.22385764,3.22385764,14,3.50000006,14L4.5,14C4.7761423999999995,14,5,14.22385764,5,14.50000006" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="0.30000001192092896"/></g><g><path d="M9,11.50000006L9,15.5C9,15.7761426,8.7761424,16,8.5,16L7.5,16C7.22385764,16,7,15.7761426,7,15.5L7,11.50000012C7,11.22385764,7.22385764,11,7.50000006,11L8.5,11C8.7761424,11,9,11.22385764,9,11.50000006" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="0.30000001192092896"/></g><g><path d="M13,7.50000006L13,15.5C13,15.7761421,12.7761424,16,12.5,16L11.5,16C11.22385764,16,11,15.7761421,11,15.5L11,7.50000024C11,7.22385764,11.22385764,7,11.50000006,7L12.5,7C12.7761424,7,13,7.22385764,13,7.50000006" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="0.30000001192092896"/></g><g><path d="M17,4.50000006L17,15.5C17,15.776142,16.7761424,16,16.5,16L15.5,16C15.22385764,16,15,15.776142,15,15.5L15,4.50000024C15,4.22385764,15.22385764,4,15.50000006,4L16.5,4C16.7761424,4,17,4.22385764,17,4.50000006" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="0.30000001192092896"/></g><g><path d="M4.6215529,4.2073684L3.5606198,3.14643526C3.3653573999999997,2.951172829,3.0487751999999997,2.951173306,2.85351324,3.14643526L2.14640617,3.85354209C1.951144218,4.0488043000000005,1.951143742,4.3653865,2.14640617,4.5606489L3.2073393,5.621582L2.14661515,6.6823063000000005C1.951352954,6.877568699999999,1.951352954,7.1941509,2.14661515,7.3894129L2.85372198,8.0965199C3.0489842,8.2917819,3.3655666,8.2917819,3.5608288999999997,8.0965195L4.6215527000000005,7.0357957L5.6819401,8.096182800000001C5.8772023,8.2914448,6.1937847,8.2914448,6.3890467,8.096182800000001L7.0961537,7.3890758C7.2914157,7.1938138,7.2914157,6.8772310999999995,7.0961533,6.6819689L6.0357661,5.6215817999999995L7.0963621,4.5609856C7.2916245,4.3657231,7.2916245,4.0491409,7.0963626,3.8538789700000002L6.3892555,3.14677238C6.1939936,2.951509953,5.8774109,2.951509476,5.6821487,3.14677238L4.6215529,4.2073684Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="0.30000001192092896"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="20" height="20" viewBox="0 0 20 20"><g><g></g><g><path d="M5,14.50000006L5,15.5C5,15.7761424,4.7761423999999995,16,4.5,16L3.5,16C3.22385764,16,3,15.7761424,3,15.5L3,14.5C3,14.22385764,3.22385764,14,3.50000006,14L4.5,14C4.7761423999999995,14,5,14.22385764,5,14.50000006" fill-rule="evenodd" fill="#F04C4C" fill-opacity="1"/></g><g><path d="M9,11.50000006L9,15.5C9,15.7761426,8.7761424,16,8.5,16L7.5,16C7.22385764,16,7,15.7761426,7,15.5L7,11.50000012C7,11.22385764,7.22385764,11,7.50000006,11L8.5,11C8.7761424,11,9,11.22385764,9,11.50000006" fill-rule="evenodd" fill="#F04C4C" fill-opacity="0.30000001192092896"/></g><g><path d="M13,7.50000006L13,15.5C13,15.7761421,12.7761424,16,12.5,16L11.5,16C11.22385764,16,11,15.7761421,11,15.5L11,7.50000024C11,7.22385764,11.22385764,7,11.50000006,7L12.5,7C12.7761424,7,13,7.22385764,13,7.50000006" fill-rule="evenodd" fill="#F04C4C" fill-opacity="0.30000001192092896"/></g><g><path d="M17,4.50000006L17,15.5C17,15.776142,16.7761424,16,16.5,16L15.5,16C15.22385764,16,15,15.776142,15,15.5L15,4.50000024C15,4.22385764,15.22385764,4,15.50000006,4L16.5,4C16.7761424,4,17,4.22385764,17,4.50000006" fill-rule="evenodd" fill="#F04C4C" fill-opacity="0.30000001192092896"/></g><g><g><path d="M6.676171770367432,7.75C6.449505070367431,7.75,6.233671770367431,7.71,6.028671770367431,7.6300001C5.823671700367432,7.548333400000001,5.642005200367432,7.4283333,5.4836719003674315,7.27C5.3270052403674315,7.1116667,5.202838630367432,6.9158337,5.1111719603674315,6.6825004C5.021171949367432,6.449167,4.976171970367432,6.1799998,4.976171970367432,5.8749999C4.976171970367432,5.4766665,5.052005261367432,5.1383333,5.203671930367432,4.86000001C5.357005300367431,4.58000004,5.562005040367431,4.36666667,5.818671700367432,4.21999991C6.077005170367432,4.073333338,6.362838470367432,4,6.676171770367432,4C7.139505170367432,4,7.503671870367432,4.10749996,7.768671970367432,4.32249987C8.033672070367432,4.53749996,8.211172070367432,4.84166682,8.30117227036743,5.235C8.30117227036743,5.235,7.606172070367432,5.3349999,7.606172070367432,5.3349999C7.541172070367431,5.125,7.434505270367431,4.95749992,7.286171870367432,4.83249986C7.139505170367432,4.70583326,6.951171870367432,4.64166647,6.7211718703674315,4.63999975C6.492838670367432,4.63666648,6.302838770367432,4.68583316,6.151172170367431,4.78749979C5.999505470367431,4.88916641,5.885338600367431,5.0333331999999995,5.808671950367431,5.2199998999999995C5.733671960367432,5.4066665,5.696172000367431,5.6249998,5.696172000367431,5.8749999C5.696172000367431,6.124999799999999,5.733671960367432,6.3416667,5.808671950367431,6.5250001C5.885338600367431,6.7083335,5.999505470367431,6.8508337,6.151172170367431,6.9525003000000005C6.302838770367432,7.054167,6.492838670367432,7.1066668,6.7211718703674315,7.110000100000001C6.876171870367432,7.1133334999999995,7.016171970367432,7.0866668,7.141171970367432,7.0300002C7.267838670367432,6.9733336,7.374505470367431,6.884167,7.461172070367432,6.7625003C7.547838970367431,6.640833600000001,7.609505370367431,6.485000100000001,7.646172070367432,6.2950001C7.646172070367432,6.2950001,7.076171870367432,6.2950001,7.076171870367432,6.2950001C7.076171870367432,6.2950001,7.076171870367432,5.7700001,7.076171870367432,5.7700001C7.076171870367432,5.7700001,8.371171970367431,5.7700001,8.371171970367431,5.7700001C8.374505270367433,5.7916667,8.377005370367431,5.8300002,8.378672170367432,5.8850001C8.380338670367433,5.9400001,8.381172170367432,5.9716666,8.381172170367432,5.9799999C8.381172170367432,6.3249998000000005,8.311171970367432,6.6308334,8.17117217036743,6.8975C8.031172270367431,7.1641667,7.833672070367432,7.3733335,7.578671970367432,7.5250001C7.323671770367431,7.6750001999999995,7.022838570367432,7.75,6.676171770367432,7.75Z" fill="#F04C4C" fill-opacity="1"/></g><g><path d="M3.5650001,7.675000147683716C3.5650001,7.675000147683716,3.5650001,7.1150002476837155,3.5650001,7.1150002476837155C3.5650001,7.1150002476837155,2,7.1150002476837155,2,7.1150002476837155C2,7.1150002476837155,2,6.480000247683716,2,6.480000247683716C2,6.480000247683716,3.135,4.075000047683716,3.135,4.075000047683716C3.135,4.075000047683716,3.9150001999999997,4.075000047683716,3.9150001999999997,4.075000047683716C3.9150001999999997,4.075000047683716,2.78000009,6.480000247683716,2.78000009,6.480000247683716C2.78000009,6.480000247683716,3.5650001,6.480000247683716,3.5650001,6.480000247683716C3.5650001,6.480000247683716,3.5650001,5.579999947683715,3.5650001,5.579999947683715C3.5650001,5.579999947683715,4.2550001,5.579999947683715,4.2550001,5.579999947683715C4.2550001,5.579999947683715,4.2550001,6.480000247683716,4.2550001,6.480000247683716C4.2550001,6.480000247683716,4.575,6.480000247683716,4.575,6.480000247683716C4.575,6.480000247683716,4.575,7.1150002476837155,4.575,7.1150002476837155C4.575,7.1150002476837155,4.2550001,7.1150002476837155,4.2550001,7.1150002476837155C4.2550001,7.1150002476837155,4.2550001,7.675000147683716,4.2550001,7.675000147683716C4.2550001,7.675000147683716,3.5650001,7.675000147683716,3.5650001,7.675000147683716Z" fill="#F04C4C" fill-opacity="1"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="20" height="20" viewBox="0 0 20 20"><g><g></g><g><path d="M5,14.50000006L5,15.5C5,15.7761424,4.7761423999999995,16,4.5,16L3.5,16C3.22385764,16,3,15.7761424,3,15.5L3,14.5C3,14.22385764,3.22385764,14,3.50000006,14L4.5,14C4.7761423999999995,14,5,14.22385764,5,14.50000006" fill-rule="evenodd" fill="#FFA000" fill-opacity="1"/></g><g><path d="M9,11.50000006L9,15.5C9,15.7761426,8.7761424,16,8.5,16L7.5,16C7.22385764,16,7,15.7761426,7,15.5L7,11.50000012C7,11.22385764,7.22385764,11,7.50000006,11L8.5,11C8.7761424,11,9,11.22385764,9,11.50000006" fill-rule="evenodd" fill="#FFA000" fill-opacity="1"/></g><g><path d="M13,7.50000006L13,15.5C13,15.7761421,12.7761424,16,12.5,16L11.5,16C11.22385764,16,11,15.7761421,11,15.5L11,7.50000024C11,7.22385764,11.22385764,7,11.50000006,7L12.5,7C12.7761424,7,13,7.22385764,13,7.50000006" fill-rule="evenodd" fill="#FFA000" fill-opacity="0.30000001192092896"/></g><g><path d="M17,4.50000006L17,15.5C17,15.776142,16.7761424,16,16.5,16L15.5,16C15.22385764,16,15,15.776142,15,15.5L15,4.50000024C15,4.22385764,15.22385764,4,15.50000006,4L16.5,4C16.7761424,4,17,4.22385764,17,4.50000006" fill-rule="evenodd" fill="#FFA000" fill-opacity="0.30000001192092896"/></g><g><g><path d="M6.676171770367432,7.75C6.449505070367431,7.75,6.233671770367431,7.71,6.028671770367431,7.6300001C5.823671700367432,7.548333400000001,5.642005200367432,7.4283333,5.4836719003674315,7.27C5.3270052403674315,7.1116667,5.202838630367432,6.9158337,5.1111719603674315,6.6825004C5.021171949367432,6.449167,4.976171970367432,6.1799998,4.976171970367432,5.8749999C4.976171970367432,5.4766665,5.052005261367432,5.1383333,5.203671930367432,4.86000001C5.357005300367431,4.58000004,5.562005040367431,4.36666667,5.818671700367432,4.21999991C6.077005170367432,4.073333338,6.362838470367432,4,6.676171770367432,4C7.139505170367432,4,7.503671870367432,4.10749996,7.768671970367432,4.32249987C8.033672070367432,4.53749996,8.211172070367432,4.84166682,8.30117227036743,5.235C8.30117227036743,5.235,7.606172070367432,5.3349999,7.606172070367432,5.3349999C7.541172070367431,5.125,7.434505270367431,4.95749992,7.286171870367432,4.83249986C7.139505170367432,4.70583326,6.951171870367432,4.64166647,6.7211718703674315,4.63999975C6.492838670367432,4.63666648,6.302838770367432,4.68583316,6.151172170367431,4.78749979C5.999505470367431,4.88916641,5.885338600367431,5.0333331999999995,5.808671950367431,5.2199998999999995C5.733671960367432,5.4066665,5.696172000367431,5.6249998,5.696172000367431,5.8749999C5.696172000367431,6.124999799999999,5.733671960367432,6.3416667,5.808671950367431,6.5250001C5.885338600367431,6.7083335,5.999505470367431,6.8508337,6.151172170367431,6.9525003000000005C6.302838770367432,7.054167,6.492838670367432,7.1066668,6.7211718703674315,7.110000100000001C6.876171870367432,7.1133334999999995,7.016171970367432,7.0866668,7.141171970367432,7.0300002C7.267838670367432,6.9733336,7.374505470367431,6.884167,7.461172070367432,6.7625003C7.547838970367431,6.640833600000001,7.609505370367431,6.485000100000001,7.646172070367432,6.2950001C7.646172070367432,6.2950001,7.076171870367432,6.2950001,7.076171870367432,6.2950001C7.076171870367432,6.2950001,7.076171870367432,5.7700001,7.076171870367432,5.7700001C7.076171870367432,5.7700001,8.371171970367431,5.7700001,8.371171970367431,5.7700001C8.374505270367433,5.7916667,8.377005370367431,5.8300002,8.378672170367432,5.8850001C8.380338670367433,5.9400001,8.381172170367432,5.9716666,8.381172170367432,5.9799999C8.381172170367432,6.3249998000000005,8.311171970367432,6.6308334,8.17117217036743,6.8975C8.031172270367431,7.1641667,7.833672070367432,7.3733335,7.578671970367432,7.5250001C7.323671770367431,7.6750001999999995,7.022838570367432,7.75,6.676171770367432,7.75Z" fill="#FFA000" fill-opacity="1"/></g><g><path d="M3.5650001,7.675000147683716C3.5650001,7.675000147683716,3.5650001,7.1150002476837155,3.5650001,7.1150002476837155C3.5650001,7.1150002476837155,2,7.1150002476837155,2,7.1150002476837155C2,7.1150002476837155,2,6.480000247683716,2,6.480000247683716C2,6.480000247683716,3.135,4.075000047683716,3.135,4.075000047683716C3.135,4.075000047683716,3.9150001999999997,4.075000047683716,3.9150001999999997,4.075000047683716C3.9150001999999997,4.075000047683716,2.78000009,6.480000247683716,2.78000009,6.480000247683716C2.78000009,6.480000247683716,3.5650001,6.480000247683716,3.5650001,6.480000247683716C3.5650001,6.480000247683716,3.5650001,5.579999947683715,3.5650001,5.579999947683715C3.5650001,5.579999947683715,4.2550001,5.579999947683715,4.2550001,5.579999947683715C4.2550001,5.579999947683715,4.2550001,6.480000247683716,4.2550001,6.480000247683716C4.2550001,6.480000247683716,4.575,6.480000247683716,4.575,6.480000247683716C4.575,6.480000247683716,4.575,7.1150002476837155,4.575,7.1150002476837155C4.575,7.1150002476837155,4.2550001,7.1150002476837155,4.2550001,7.1150002476837155C4.2550001,7.1150002476837155,4.2550001,7.675000147683716,4.2550001,7.675000147683716C4.2550001,7.675000147683716,3.5650001,7.675000147683716,3.5650001,7.675000147683716Z" fill="#FFA000" fill-opacity="1"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="20" height="20" viewBox="0 0 20 20"><g><g></g><g><path d="M5,14.50000006L5,15.5C5,15.7761424,4.7761423999999995,16,4.5,16L3.5,16C3.22385764,16,3,15.7761424,3,15.5L3,14.5C3,14.22385764,3.22385764,14,3.50000006,14L4.5,14C4.7761423999999995,14,5,14.22385764,5,14.50000006" fill-rule="evenodd" fill="#2DDA86" fill-opacity="1"/></g><g><path d="M9,11.50000006L9,15.5C9,15.7761426,8.7761424,16,8.5,16L7.5,16C7.22385764,16,7,15.7761426,7,15.5L7,11.50000012C7,11.22385764,7.22385764,11,7.50000006,11L8.5,11C8.7761424,11,9,11.22385764,9,11.50000006" fill-rule="evenodd" fill="#2DDA86" fill-opacity="1"/></g><g><path d="M13,7.50000006L13,15.5C13,15.7761421,12.7761424,16,12.5,16L11.5,16C11.22385764,16,11,15.7761421,11,15.5L11,7.50000024C11,7.22385764,11.22385764,7,11.50000006,7L12.5,7C12.7761424,7,13,7.22385764,13,7.50000006" fill-rule="evenodd" fill="#2DDA86" fill-opacity="1"/></g><g><path d="M17,4.50000006L17,15.5C17,15.776142,16.7761424,16,16.5,16L15.5,16C15.22385764,16,15,15.776142,15,15.5L15,4.50000024C15,4.22385764,15.22385764,4,15.50000006,4L16.5,4C16.7761424,4,17,4.22385764,17,4.50000006" fill-rule="evenodd" fill="#2DDA86" fill-opacity="0.30000001192092896"/></g><g><g><path d="M6.676171770367432,7.75C6.449505070367431,7.75,6.233671770367431,7.71,6.028671770367431,7.6300001C5.823671700367432,7.548333400000001,5.642005200367432,7.4283333,5.4836719003674315,7.27C5.3270052403674315,7.1116667,5.202838630367432,6.9158337,5.1111719603674315,6.6825004C5.021171949367432,6.449167,4.976171970367432,6.1799998,4.976171970367432,5.8749999C4.976171970367432,5.4766665,5.052005261367432,5.1383333,5.203671930367432,4.86000001C5.357005300367431,4.58000004,5.562005040367431,4.36666667,5.818671700367432,4.21999991C6.077005170367432,4.073333338,6.362838470367432,4,6.676171770367432,4C7.139505170367432,4,7.503671870367432,4.10749996,7.768671970367432,4.32249987C8.033672070367432,4.53749996,8.211172070367432,4.84166682,8.30117227036743,5.235C8.30117227036743,5.235,7.606172070367432,5.3349999,7.606172070367432,5.3349999C7.541172070367431,5.125,7.434505270367431,4.95749992,7.286171870367432,4.83249986C7.139505170367432,4.70583326,6.951171870367432,4.64166647,6.7211718703674315,4.63999975C6.492838670367432,4.63666648,6.302838770367432,4.68583316,6.151172170367431,4.78749979C5.999505470367431,4.88916641,5.885338600367431,5.0333331999999995,5.808671950367431,5.2199998999999995C5.733671960367432,5.4066665,5.696172000367431,5.6249998,5.696172000367431,5.8749999C5.696172000367431,6.124999799999999,5.733671960367432,6.3416667,5.808671950367431,6.5250001C5.885338600367431,6.7083335,5.999505470367431,6.8508337,6.151172170367431,6.9525003000000005C6.302838770367432,7.054167,6.492838670367432,7.1066668,6.7211718703674315,7.110000100000001C6.876171870367432,7.1133334999999995,7.016171970367432,7.0866668,7.141171970367432,7.0300002C7.267838670367432,6.9733336,7.374505470367431,6.884167,7.461172070367432,6.7625003C7.547838970367431,6.640833600000001,7.609505370367431,6.485000100000001,7.646172070367432,6.2950001C7.646172070367432,6.2950001,7.076171870367432,6.2950001,7.076171870367432,6.2950001C7.076171870367432,6.2950001,7.076171870367432,5.7700001,7.076171870367432,5.7700001C7.076171870367432,5.7700001,8.371171970367431,5.7700001,8.371171970367431,5.7700001C8.374505270367433,5.7916667,8.377005370367431,5.8300002,8.378672170367432,5.8850001C8.380338670367433,5.9400001,8.381172170367432,5.9716666,8.381172170367432,5.9799999C8.381172170367432,6.3249998000000005,8.311171970367432,6.6308334,8.17117217036743,6.8975C8.031172270367431,7.1641667,7.833672070367432,7.3733335,7.578671970367432,7.5250001C7.323671770367431,7.6750001999999995,7.022838570367432,7.75,6.676171770367432,7.75Z" fill="#2DDA86" fill-opacity="1"/></g><g><path d="M3.5650001,7.675000147683716C3.5650001,7.675000147683716,3.5650001,7.1150002476837155,3.5650001,7.1150002476837155C3.5650001,7.1150002476837155,2,7.1150002476837155,2,7.1150002476837155C2,7.1150002476837155,2,6.480000247683716,2,6.480000247683716C2,6.480000247683716,3.135,4.075000047683716,3.135,4.075000047683716C3.135,4.075000047683716,3.9150001999999997,4.075000047683716,3.9150001999999997,4.075000047683716C3.9150001999999997,4.075000047683716,2.78000009,6.480000247683716,2.78000009,6.480000247683716C2.78000009,6.480000247683716,3.5650001,6.480000247683716,3.5650001,6.480000247683716C3.5650001,6.480000247683716,3.5650001,5.579999947683715,3.5650001,5.579999947683715C3.5650001,5.579999947683715,4.2550001,5.579999947683715,4.2550001,5.579999947683715C4.2550001,5.579999947683715,4.2550001,6.480000247683716,4.2550001,6.480000247683716C4.2550001,6.480000247683716,4.575,6.480000247683716,4.575,6.480000247683716C4.575,6.480000247683716,4.575,7.1150002476837155,4.575,7.1150002476837155C4.575,7.1150002476837155,4.2550001,7.1150002476837155,4.2550001,7.1150002476837155C4.2550001,7.1150002476837155,4.2550001,7.675000147683716,4.2550001,7.675000147683716C4.2550001,7.675000147683716,3.5650001,7.675000147683716,3.5650001,7.675000147683716Z" fill="#2DDA86" fill-opacity="1"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="20" height="20" viewBox="0 0 20 20"><g><g></g><g><path d="M5,14.50000006L5,15.5C5,15.7761424,4.7761423999999995,16,4.5,16L3.5,16C3.22385764,16,3,15.7761424,3,15.5L3,14.5C3,14.22385764,3.22385764,14,3.50000006,14L4.5,14C4.7761423999999995,14,5,14.22385764,5,14.50000006" fill-rule="evenodd" fill="#2DDA86" fill-opacity="1"/></g><g><path d="M9,11.50000006L9,15.5C9,15.7761426,8.7761424,16,8.5,16L7.5,16C7.22385764,16,7,15.7761426,7,15.5L7,11.50000012C7,11.22385764,7.22385764,11,7.50000006,11L8.5,11C8.7761424,11,9,11.22385764,9,11.50000006" fill-rule="evenodd" fill="#2DDA86" fill-opacity="1"/></g><g><path d="M13,7.50000006L13,15.5C13,15.7761421,12.7761424,16,12.5,16L11.5,16C11.22385764,16,11,15.7761421,11,15.5L11,7.50000024C11,7.22385764,11.22385764,7,11.50000006,7L12.5,7C12.7761424,7,13,7.22385764,13,7.50000006" fill-rule="evenodd" fill="#2DDA86" fill-opacity="1"/></g><g><path d="M17,4.50000006L17,15.5C17,15.776142,16.7761424,16,16.5,16L15.5,16C15.22385764,16,15,15.776142,15,15.5L15,4.50000024C15,4.22385764,15.22385764,4,15.50000006,4L16.5,4C16.7761424,4,17,4.22385764,17,4.50000006" fill-rule="evenodd" fill="#2DDA86" fill-opacity="1"/></g><g><g><path d="M6.676171770367432,7.75C6.449505070367431,7.75,6.233671770367431,7.71,6.028671770367431,7.6300001C5.823671700367432,7.548333400000001,5.642005200367432,7.4283333,5.4836719003674315,7.27C5.3270052403674315,7.1116667,5.202838630367432,6.9158337,5.1111719603674315,6.6825004C5.021171949367432,6.449167,4.976171970367432,6.1799998,4.976171970367432,5.8749999C4.976171970367432,5.4766665,5.052005261367432,5.1383333,5.203671930367432,4.86000001C5.357005300367431,4.58000004,5.562005040367431,4.36666667,5.818671700367432,4.21999991C6.077005170367432,4.073333338,6.362838470367432,4,6.676171770367432,4C7.139505170367432,4,7.503671870367432,4.10749996,7.768671970367432,4.32249987C8.033672070367432,4.53749996,8.211172070367432,4.84166682,8.30117227036743,5.235C8.30117227036743,5.235,7.606172070367432,5.3349999,7.606172070367432,5.3349999C7.541172070367431,5.125,7.434505270367431,4.95749992,7.286171870367432,4.83249986C7.139505170367432,4.70583326,6.951171870367432,4.64166647,6.7211718703674315,4.63999975C6.492838670367432,4.63666648,6.302838770367432,4.68583316,6.151172170367431,4.78749979C5.999505470367431,4.88916641,5.885338600367431,5.0333331999999995,5.808671950367431,5.2199998999999995C5.733671960367432,5.4066665,5.696172000367431,5.6249998,5.696172000367431,5.8749999C5.696172000367431,6.124999799999999,5.733671960367432,6.3416667,5.808671950367431,6.5250001C5.885338600367431,6.7083335,5.999505470367431,6.8508337,6.151172170367431,6.9525003000000005C6.302838770367432,7.054167,6.492838670367432,7.1066668,6.7211718703674315,7.110000100000001C6.876171870367432,7.1133334999999995,7.016171970367432,7.0866668,7.141171970367432,7.0300002C7.267838670367432,6.9733336,7.374505470367431,6.884167,7.461172070367432,6.7625003C7.547838970367431,6.640833600000001,7.609505370367431,6.485000100000001,7.646172070367432,6.2950001C7.646172070367432,6.2950001,7.076171870367432,6.2950001,7.076171870367432,6.2950001C7.076171870367432,6.2950001,7.076171870367432,5.7700001,7.076171870367432,5.7700001C7.076171870367432,5.7700001,8.371171970367431,5.7700001,8.371171970367431,5.7700001C8.374505270367433,5.7916667,8.377005370367431,5.8300002,8.378672170367432,5.8850001C8.380338670367433,5.9400001,8.381172170367432,5.9716666,8.381172170367432,5.9799999C8.381172170367432,6.3249998000000005,8.311171970367432,6.6308334,8.17117217036743,6.8975C8.031172270367431,7.1641667,7.833672070367432,7.3733335,7.578671970367432,7.5250001C7.323671770367431,7.6750001999999995,7.022838570367432,7.75,6.676171770367432,7.75Z" fill="#2DDA86" fill-opacity="1"/></g><g><path d="M3.5650001,7.675000147683716C3.5650001,7.675000147683716,3.5650001,7.1150002476837155,3.5650001,7.1150002476837155C3.5650001,7.1150002476837155,2,7.1150002476837155,2,7.1150002476837155C2,7.1150002476837155,2,6.480000247683716,2,6.480000247683716C2,6.480000247683716,3.135,4.075000047683716,3.135,4.075000047683716C3.135,4.075000047683716,3.9150001999999997,4.075000047683716,3.9150001999999997,4.075000047683716C3.9150001999999997,4.075000047683716,2.78000009,6.480000247683716,2.78000009,6.480000247683716C2.78000009,6.480000247683716,3.5650001,6.480000247683716,3.5650001,6.480000247683716C3.5650001,6.480000247683716,3.5650001,5.579999947683715,3.5650001,5.579999947683715C3.5650001,5.579999947683715,4.2550001,5.579999947683715,4.2550001,5.579999947683715C4.2550001,5.579999947683715,4.2550001,6.480000247683716,4.2550001,6.480000247683716C4.2550001,6.480000247683716,4.575,6.480000247683716,4.575,6.480000247683716C4.575,6.480000247683716,4.575,7.1150002476837155,4.575,7.1150002476837155C4.575,7.1150002476837155,4.2550001,7.1150002476837155,4.2550001,7.1150002476837155C4.2550001,7.1150002476837155,4.2550001,7.675000147683716,4.2550001,7.675000147683716C4.2550001,7.675000147683716,3.5650001,7.675000147683716,3.5650001,7.675000147683716Z" fill="#2DDA86" fill-opacity="1"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="20" height="20" viewBox="0 0 20 20"><g><g></g><g><path d="M14.000031244415283,4.500025035532227L14.000031244415283,15.500024795532227C14.000031244415283,15.776166795532227,14.223889244415282,16.000024795532227,14.500031244415283,16.000024795532227L15.500031244415283,16.000024795532227C15.776173244415283,16.000024795532227,16.000031244415283,15.776166795532227,16.000031244415283,15.500024795532227L16.000031244415283,4.500024855532226C16.000031244415283,4.223882435532227,15.776173244415283,4.000024795532227,15.500031244415283,4.000024795532227L14.500031244415283,4.000024795532227C14.223889244415282,4.000024795532227,14.000031244415283,4.223882435532227,14.000031244415283,4.500025035532227ZM4.767682044415283,4.353613375532227L5.828615144415283,5.4145464955322264L6.889210944415283,4.353950495532226C7.084473144415283,4.158687595532227,7.401055844415283,4.1586880655322265,7.596317744415283,4.353950495532226L8.303424844415282,5.0610570955322265C8.498686744415284,5.256319095532227,8.498686744415284,5.572901295532226,8.303424344415284,5.768163695532227L7.242828344415283,6.828759895532226L8.303215544415284,7.889146995532227C8.498477944415283,8.084409195532228,8.498477944415283,8.400991895532226,8.303215944415284,8.596253895532227L7.596108944415283,9.303360895532226C7.400846944415283,9.498622895532225,7.084264544415284,9.498622895532225,6.8890023444152835,9.303360895532226L5.828614944415284,8.242973795532226L4.767891144415283,9.303697595532228C4.572628844415283,9.498959995532227,4.256046444415283,9.498959995532227,4.060784224415283,9.303698095532226L3.3536773944152833,8.596590995532226C3.158415198415283,8.401328995532227,3.158415198415283,8.084746795532226,3.3536773944152833,7.889484395532227L4.414401544415283,6.828760195532226L3.3534684144152833,5.767826995532227C3.1582059864152834,5.572564595532226,3.1582064624152832,5.255982395532227,3.3534684144152833,5.060720195532227L4.060575484415283,4.353613375532227C4.255837444415283,4.158351425532227,4.572419644415283,4.158350945532226,4.767682044415283,4.353613375532227ZM9.000031044415284,9.500024795532227L9.000031044415284,15.500024795532227C9.000031044415284,15.776166795532227,9.223888844415283,16.000024795532227,9.500031044415284,16.000024795532227L10.500031044415284,16.000024795532227C10.776173144415283,16.000024795532227,11.000031044415284,15.776166795532227,11.000031044415284,15.500024795532227L11.000031044415284,9.500024795532227C11.000031044415284,9.223882695532225,10.776173144415283,9.000024795532227,10.500031044415284,9.000024795532227L9.500031044415284,9.000024795532227C9.223888844415283,9.000024795532227,9.000031044415284,9.223882695532225,9.000031044415284,9.500024795532227ZM4.000030994415283,13.500024795532227L4.000030994415283,15.500024795532227C4.000030994415283,15.776166795532227,4.2238886444152834,16.000024795532227,4.500031044415283,16.000024795532227L5.500031044415284,16.000024795532227C5.776173344415284,16.000024795532227,6.000031044415284,15.776166795532227,6.000031044415284,15.500024795532227L6.000031044415284,13.500024795532227C6.000031044415284,13.223882695532227,5.776173344415284,13.000024795532227,5.500031044415284,13.000024795532227L4.500031044415283,13.000024795532227C4.2238886444152834,13.000024795532227,4.000030994415283,13.223882695532227,4.000030994415283,13.500024795532227Z" fill-rule="evenodd" fill="#FFFFFF" fill-opacity="0.30000001192092896"/></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="20" height="20" viewBox="0 0 20 20"><g><g></g><g><path d="M14,15.5L14,4.50000024C14,4.22385764,14.22385764,4,14.50000006,4L15.5,4C15.7761424,4,16,4.22385764,16,4.50000006L16,15.5C16,15.776142,15.7761424,16,15.5,16L14.5,16C14.22385764,16,14,15.776142,14,15.5" fill-rule="evenodd" fill="#F04C4C" fill-opacity="0.30000001192092896"/></g><g><path d="M9,15.5L9,9.50000018C9,9.22385764,9.22385764,9,9.50000006,9L10.5,9C10.7761424,9,11,9.22385764,11,9.50000006L11,15.5C11,15.7761426,10.7761424,16,10.5,16L9.5,16C9.22385764,16,9,15.7761426,9,15.5" fill-rule="evenodd" fill="#F04C4C" fill-opacity="0.30000001192092896"/></g><g><path d="M4,15.5L4,13.50000006C4,13.22385764,4.22385764,13,4.50000006,13L5.5,13C5.7761423999999995,13,6,13.22385764,6,13.50000006L6,15.5C6,15.7761424,5.7761423999999995,16,5.5,16L4.5,16C4.22385764,16,4,15.7761424,4,15.5" fill-rule="evenodd" fill="#F04C4C" fill-opacity="1"/></g><g><g><path d="M6.676171770367432,7.75C6.449505070367431,7.75,6.233671770367431,7.71,6.028671770367431,7.6300001C5.823671700367432,7.548333400000001,5.642005200367432,7.4283333,5.4836719003674315,7.27C5.3270052403674315,7.1116667,5.202838630367432,6.9158337,5.1111719603674315,6.6825004C5.021171949367432,6.449167,4.976171970367432,6.1799998,4.976171970367432,5.8749999C4.976171970367432,5.4766665,5.052005261367432,5.1383333,5.203671930367432,4.86000001C5.357005300367431,4.58000004,5.562005040367431,4.36666667,5.818671700367432,4.21999991C6.077005170367432,4.073333338,6.362838470367432,4,6.676171770367432,4C7.139505170367432,4,7.503671870367432,4.10749996,7.768671970367432,4.32249987C8.033672070367432,4.53749996,8.211172070367432,4.84166682,8.30117227036743,5.235C8.30117227036743,5.235,7.606172070367432,5.3349999,7.606172070367432,5.3349999C7.541172070367431,5.125,7.434505270367431,4.95749992,7.286171870367432,4.83249986C7.139505170367432,4.70583326,6.951171870367432,4.64166647,6.7211718703674315,4.63999975C6.492838670367432,4.63666648,6.302838770367432,4.68583316,6.151172170367431,4.78749979C5.999505470367431,4.88916641,5.885338600367431,5.0333331999999995,5.808671950367431,5.2199998999999995C5.733671960367432,5.4066665,5.696172000367431,5.6249998,5.696172000367431,5.8749999C5.696172000367431,6.124999799999999,5.733671960367432,6.3416667,5.808671950367431,6.5250001C5.885338600367431,6.7083335,5.999505470367431,6.8508337,6.151172170367431,6.9525003000000005C6.302838770367432,7.054167,6.492838670367432,7.1066668,6.7211718703674315,7.110000100000001C6.876171870367432,7.1133334999999995,7.016171970367432,7.0866668,7.141171970367432,7.0300002C7.267838670367432,6.9733336,7.374505470367431,6.884167,7.461172070367432,6.7625003C7.547838970367431,6.640833600000001,7.609505370367431,6.485000100000001,7.646172070367432,6.2950001C7.646172070367432,6.2950001,7.076171870367432,6.2950001,7.076171870367432,6.2950001C7.076171870367432,6.2950001,7.076171870367432,5.7700001,7.076171870367432,5.7700001C7.076171870367432,5.7700001,8.371171970367431,5.7700001,8.371171970367431,5.7700001C8.374505270367433,5.7916667,8.377005370367431,5.8300002,8.378672170367432,5.8850001C8.380338670367433,5.9400001,8.381172170367432,5.9716666,8.381172170367432,5.9799999C8.381172170367432,6.3249998000000005,8.311171970367432,6.6308334,8.17117217036743,6.8975C8.031172270367431,7.1641667,7.833672070367432,7.3733335,7.578671970367432,7.5250001C7.323671770367431,7.6750001999999995,7.022838570367432,7.75,6.676171770367432,7.75Z" fill="#F04C4C" fill-opacity="1"/></g><g><path d="M3.5650001,7.675000147683716C3.5650001,7.675000147683716,3.5650001,7.1150002476837155,3.5650001,7.1150002476837155C3.5650001,7.1150002476837155,2,7.1150002476837155,2,7.1150002476837155C2,7.1150002476837155,2,6.480000247683716,2,6.480000247683716C2,6.480000247683716,3.135,4.075000047683716,3.135,4.075000047683716C3.135,4.075000047683716,3.9150001999999997,4.075000047683716,3.9150001999999997,4.075000047683716C3.9150001999999997,4.075000047683716,2.78000009,6.480000247683716,2.78000009,6.480000247683716C2.78000009,6.480000247683716,3.5650001,6.480000247683716,3.5650001,6.480000247683716C3.5650001,6.480000247683716,3.5650001,5.579999947683715,3.5650001,5.579999947683715C3.5650001,5.579999947683715,4.2550001,5.579999947683715,4.2550001,5.579999947683715C4.2550001,5.579999947683715,4.2550001,6.480000247683716,4.2550001,6.480000247683716C4.2550001,6.480000247683716,4.575,6.480000247683716,4.575,6.480000247683716C4.575,6.480000247683716,4.575,7.1150002476837155,4.575,7.1150002476837155C4.575,7.1150002476837155,4.2550001,7.1150002476837155,4.2550001,7.1150002476837155C4.2550001,7.1150002476837155,4.2550001,7.675000147683716,4.2550001,7.675000147683716C4.2550001,7.675000147683716,3.5650001,7.675000147683716,3.5650001,7.675000147683716Z" fill="#F04C4C" fill-opacity="1"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="20" height="20" viewBox="0 0 20 20"><g><g></g><g><path d="M14,15.5L14,4.50000024C14,4.22385764,14.22385764,4,14.50000006,4L15.5,4C15.7761424,4,16,4.22385764,16,4.50000006L16,15.5C16,15.776142,15.7761424,16,15.5,16L14.5,16C14.22385764,16,14,15.776142,14,15.5" fill-rule="evenodd" fill="#FFA000" fill-opacity="0.30000001192092896"/></g><g><path d="M9,15.5L9,9.50000018C9,9.22385764,9.22385764,9,9.50000006,9L10.5,9C10.7761424,9,11,9.22385764,11,9.50000006L11,15.5C11,15.7761426,10.7761424,16,10.5,16L9.5,16C9.22385764,16,9,15.7761426,9,15.5" fill-rule="evenodd" fill="#FFA000" fill-opacity="1"/></g><g><path d="M4,15.5L4,13.50000006C4,13.22385764,4.22385764,13,4.50000006,13L5.5,13C5.7761423999999995,13,6,13.22385764,6,13.50000006L6,15.5C6,15.7761424,5.7761423999999995,16,5.5,16L4.5,16C4.22385764,16,4,15.7761424,4,15.5" fill-rule="evenodd" fill="#FFA000" fill-opacity="1"/></g><g><g><path d="M6.676171770367432,7.75C6.449505070367431,7.75,6.233671770367431,7.71,6.028671770367431,7.6300001C5.823671700367432,7.548333400000001,5.642005200367432,7.4283333,5.4836719003674315,7.27C5.3270052403674315,7.1116667,5.202838630367432,6.9158337,5.1111719603674315,6.6825004C5.021171949367432,6.449167,4.976171970367432,6.1799998,4.976171970367432,5.8749999C4.976171970367432,5.4766665,5.052005261367432,5.1383333,5.203671930367432,4.86000001C5.357005300367431,4.58000004,5.562005040367431,4.36666667,5.818671700367432,4.21999991C6.077005170367432,4.073333338,6.362838470367432,4,6.676171770367432,4C7.139505170367432,4,7.503671870367432,4.10749996,7.768671970367432,4.32249987C8.033672070367432,4.53749996,8.211172070367432,4.84166682,8.30117227036743,5.235C8.30117227036743,5.235,7.606172070367432,5.3349999,7.606172070367432,5.3349999C7.541172070367431,5.125,7.434505270367431,4.95749992,7.286171870367432,4.83249986C7.139505170367432,4.70583326,6.951171870367432,4.64166647,6.7211718703674315,4.63999975C6.492838670367432,4.63666648,6.302838770367432,4.68583316,6.151172170367431,4.78749979C5.999505470367431,4.88916641,5.885338600367431,5.0333331999999995,5.808671950367431,5.2199998999999995C5.733671960367432,5.4066665,5.696172000367431,5.6249998,5.696172000367431,5.8749999C5.696172000367431,6.124999799999999,5.733671960367432,6.3416667,5.808671950367431,6.5250001C5.885338600367431,6.7083335,5.999505470367431,6.8508337,6.151172170367431,6.9525003000000005C6.302838770367432,7.054167,6.492838670367432,7.1066668,6.7211718703674315,7.110000100000001C6.876171870367432,7.1133334999999995,7.016171970367432,7.0866668,7.141171970367432,7.0300002C7.267838670367432,6.9733336,7.374505470367431,6.884167,7.461172070367432,6.7625003C7.547838970367431,6.640833600000001,7.609505370367431,6.485000100000001,7.646172070367432,6.2950001C7.646172070367432,6.2950001,7.076171870367432,6.2950001,7.076171870367432,6.2950001C7.076171870367432,6.2950001,7.076171870367432,5.7700001,7.076171870367432,5.7700001C7.076171870367432,5.7700001,8.371171970367431,5.7700001,8.371171970367431,5.7700001C8.374505270367433,5.7916667,8.377005370367431,5.8300002,8.378672170367432,5.8850001C8.380338670367433,5.9400001,8.381172170367432,5.9716666,8.381172170367432,5.9799999C8.381172170367432,6.3249998000000005,8.311171970367432,6.6308334,8.17117217036743,6.8975C8.031172270367431,7.1641667,7.833672070367432,7.3733335,7.578671970367432,7.5250001C7.323671770367431,7.6750001999999995,7.022838570367432,7.75,6.676171770367432,7.75Z" fill="#FFA000" fill-opacity="1"/></g><g><path d="M3.5650001,7.675000147683716C3.5650001,7.675000147683716,3.5650001,7.1150002476837155,3.5650001,7.1150002476837155C3.5650001,7.1150002476837155,2,7.1150002476837155,2,7.1150002476837155C2,7.1150002476837155,2,6.480000247683716,2,6.480000247683716C2,6.480000247683716,3.135,4.075000047683716,3.135,4.075000047683716C3.135,4.075000047683716,3.9150001999999997,4.075000047683716,3.9150001999999997,4.075000047683716C3.9150001999999997,4.075000047683716,2.78000009,6.480000247683716,2.78000009,6.480000247683716C2.78000009,6.480000247683716,3.5650001,6.480000247683716,3.5650001,6.480000247683716C3.5650001,6.480000247683716,3.5650001,5.579999947683715,3.5650001,5.579999947683715C3.5650001,5.579999947683715,4.2550001,5.579999947683715,4.2550001,5.579999947683715C4.2550001,5.579999947683715,4.2550001,6.480000247683716,4.2550001,6.480000247683716C4.2550001,6.480000247683716,4.575,6.480000247683716,4.575,6.480000247683716C4.575,6.480000247683716,4.575,7.1150002476837155,4.575,7.1150002476837155C4.575,7.1150002476837155,4.2550001,7.1150002476837155,4.2550001,7.1150002476837155C4.2550001,7.1150002476837155,4.2550001,7.675000147683716,4.2550001,7.675000147683716C4.2550001,7.675000147683716,3.5650001,7.675000147683716,3.5650001,7.675000147683716Z" fill="#FFA000" fill-opacity="1"/></g></g></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1" width="20" height="20" viewBox="0 0 20 20"><g><g></g><g><path d="M14,15.5L14,4.50000024C14,4.22385764,14.22385764,4,14.50000006,4L15.5,4C15.7761424,4,16,4.22385764,16,4.50000006L16,15.5C16,15.776142,15.7761424,16,15.5,16L14.5,16C14.22385764,16,14,15.776142,14,15.5" fill-rule="evenodd" fill="#2DDA86" fill-opacity="1"/></g><g><path d="M9,15.5L9,9.50000018C9,9.22385764,9.22385764,9,9.50000006,9L10.5,9C10.7761424,9,11,9.22385764,11,9.50000006L11,15.5C11,15.7761426,10.7761424,16,10.5,16L9.5,16C9.22385764,16,9,15.7761426,9,15.5" fill-rule="evenodd" fill="#2DDA86" fill-opacity="1"/></g><g><path d="M4,15.5L4,13.50000006C4,13.22385764,4.22385764,13,4.50000006,13L5.5,13C5.7761423999999995,13,6,13.22385764,6,13.50000006L6,15.5C6,15.7761424,5.7761423999999995,16,5.5,16L4.5,16C4.22385764,16,4,15.7761424,4,15.5" fill-rule="evenodd" fill="#2DDA86" fill-opacity="1"/></g><g><g><path d="M6.676171770367432,7.75C6.449505070367431,7.75,6.233671770367431,7.71,6.028671770367431,7.6300001C5.823671700367432,7.548333400000001,5.642005200367432,7.4283333,5.4836719003674315,7.27C5.3270052403674315,7.1116667,5.202838630367432,6.9158337,5.1111719603674315,6.6825004C5.021171949367432,6.449167,4.976171970367432,6.1799998,4.976171970367432,5.8749999C4.976171970367432,5.4766665,5.052005261367432,5.1383333,5.203671930367432,4.86000001C5.357005300367431,4.58000004,5.562005040367431,4.36666667,5.818671700367432,4.21999991C6.077005170367432,4.073333338,6.362838470367432,4,6.676171770367432,4C7.139505170367432,4,7.503671870367432,4.10749996,7.768671970367432,4.32249987C8.033672070367432,4.53749996,8.211172070367432,4.84166682,8.30117227036743,5.235C8.30117227036743,5.235,7.606172070367432,5.3349999,7.606172070367432,5.3349999C7.541172070367431,5.125,7.434505270367431,4.95749992,7.286171870367432,4.83249986C7.139505170367432,4.70583326,6.951171870367432,4.64166647,6.7211718703674315,4.63999975C6.492838670367432,4.63666648,6.302838770367432,4.68583316,6.151172170367431,4.78749979C5.999505470367431,4.88916641,5.885338600367431,5.0333331999999995,5.808671950367431,5.2199998999999995C5.733671960367432,5.4066665,5.696172000367431,5.6249998,5.696172000367431,5.8749999C5.696172000367431,6.124999799999999,5.733671960367432,6.3416667,5.808671950367431,6.5250001C5.885338600367431,6.7083335,5.999505470367431,6.8508337,6.151172170367431,6.9525003000000005C6.302838770367432,7.054167,6.492838670367432,7.1066668,6.7211718703674315,7.110000100000001C6.876171870367432,7.1133334999999995,7.016171970367432,7.0866668,7.141171970367432,7.0300002C7.267838670367432,6.9733336,7.374505470367431,6.884167,7.461172070367432,6.7625003C7.547838970367431,6.640833600000001,7.609505370367431,6.485000100000001,7.646172070367432,6.2950001C7.646172070367432,6.2950001,7.076171870367432,6.2950001,7.076171870367432,6.2950001C7.076171870367432,6.2950001,7.076171870367432,5.7700001,7.076171870367432,5.7700001C7.076171870367432,5.7700001,8.371171970367431,5.7700001,8.371171970367431,5.7700001C8.374505270367433,5.7916667,8.377005370367431,5.8300002,8.378672170367432,5.8850001C8.380338670367433,5.9400001,8.381172170367432,5.9716666,8.381172170367432,5.9799999C8.381172170367432,6.3249998000000005,8.311171970367432,6.6308334,8.17117217036743,6.8975C8.031172270367431,7.1641667,7.833672070367432,7.3733335,7.578671970367432,7.5250001C7.323671770367431,7.6750001999999995,7.022838570367432,7.75,6.676171770367432,7.75Z" fill="#2DDA86" fill-opacity="1"/></g><g><path d="M3.5650001,7.675000147683716C3.5650001,7.675000147683716,3.5650001,7.1150002476837155,3.5650001,7.1150002476837155C3.5650001,7.1150002476837155,2,7.1150002476837155,2,7.1150002476837155C2,7.1150002476837155,2,6.480000247683716,2,6.480000247683716C2,6.480000247683716,3.135,4.075000047683716,3.135,4.075000047683716C3.135,4.075000047683716,3.9150001999999997,4.075000047683716,3.9150001999999997,4.075000047683716C3.9150001999999997,4.075000047683716,2.78000009,6.480000247683716,2.78000009,6.480000247683716C2.78000009,6.480000247683716,3.5650001,6.480000247683716,3.5650001,6.480000247683716C3.5650001,6.480000247683716,3.5650001,5.579999947683715,3.5650001,5.579999947683715C3.5650001,5.579999947683715,4.2550001,5.579999947683715,4.2550001,5.579999947683715C4.2550001,5.579999947683715,4.2550001,6.480000247683716,4.2550001,6.480000247683716C4.2550001,6.480000247683716,4.575,6.480000247683716,4.575,6.480000247683716C4.575,6.480000247683716,4.575,7.1150002476837155,4.575,7.1150002476837155C4.575,7.1150002476837155,4.2550001,7.1150002476837155,4.2550001,7.1150002476837155C4.2550001,7.1150002476837155,4.2550001,7.675000147683716,4.2550001,7.675000147683716C4.2550001,7.675000147683716,3.5650001,7.675000147683716,3.5650001,7.675000147683716Z" fill="#2DDA86" fill-opacity="1"/></g></g></g></svg>
|
package/lib/ui/constant.d.ts
CHANGED
|
@@ -18,6 +18,26 @@ export declare const tileTipId = "tileTipId";
|
|
|
18
18
|
export declare const ptzMoveableTipId = "ptzMoveableTipId";
|
|
19
19
|
export declare const landscapeTipId = "landscapeTipId";
|
|
20
20
|
export declare const multiPtzId = "multiPtzId";
|
|
21
|
+
/** 控件点击统一事件:任意播放器内控件被点击时触发,可用于埋点或统一处理 */
|
|
22
|
+
export declare const widgetClick = "widgetClick";
|
|
23
|
+
/** 控件点击事件用的 widgetId,统一在此维护 */
|
|
24
|
+
export declare const widgetLabs: {
|
|
25
|
+
readonly SCREENSHOT: "Screenshot";
|
|
26
|
+
readonly RECORD_VIDEO: "RecordVideo";
|
|
27
|
+
readonly RESOLUTION: "Resolution";
|
|
28
|
+
readonly FULL_RESOLUTION_CONTROL: "FullResolutionControl";
|
|
29
|
+
readonly MUTED: "Muted";
|
|
30
|
+
readonly PTZ: "Ptz";
|
|
31
|
+
readonly PTZ_CONTROL_TIP: "PtzControlTip";
|
|
32
|
+
readonly MOVE_INTERACTIVE_CONTROL: "MoveInteractiveControl";
|
|
33
|
+
readonly VERTICAL_SMALL_INTERCOM: "VerticalSmallIntercom";
|
|
34
|
+
readonly FULL_SMALL_INTERCOM: "FullSmallIntercom";
|
|
35
|
+
readonly VOICE_INTERCOM: "VoiceIntercom";
|
|
36
|
+
readonly FULL_VOICE_INTERCOM: "FullVoiceIntercom";
|
|
37
|
+
readonly FULL_TRAVEL_ROUTE_CONTROL: "FullTravelRouteControl";
|
|
38
|
+
readonly FULL_SCREEN: "FullScreen";
|
|
39
|
+
readonly VERTICAL_SCREEN: "VerticalScreen";
|
|
40
|
+
};
|
|
21
41
|
export declare const decodeClarityDic: {
|
|
22
42
|
SS: string;
|
|
23
43
|
SD: string;
|
package/lib/ui/constant.js
CHANGED
|
@@ -18,6 +18,27 @@ export const tileTipId = 'tileTipId';
|
|
|
18
18
|
export const ptzMoveableTipId = 'ptzMoveableTipId';
|
|
19
19
|
export const landscapeTipId = 'landscapeTipId';
|
|
20
20
|
export const multiPtzId = 'multiPtzId';
|
|
21
|
+
/** 控件点击统一事件:任意播放器内控件被点击时触发,可用于埋点或统一处理 */
|
|
22
|
+
export const widgetClick = 'widgetClick';
|
|
23
|
+
|
|
24
|
+
/** 控件点击事件用的 widgetId,统一在此维护 */
|
|
25
|
+
export const widgetLabs = {
|
|
26
|
+
SCREENSHOT: 'Screenshot',
|
|
27
|
+
RECORD_VIDEO: 'RecordVideo',
|
|
28
|
+
RESOLUTION: 'Resolution',
|
|
29
|
+
FULL_RESOLUTION_CONTROL: 'FullResolutionControl',
|
|
30
|
+
MUTED: 'Muted',
|
|
31
|
+
PTZ: 'Ptz',
|
|
32
|
+
PTZ_CONTROL_TIP: 'PtzControlTip',
|
|
33
|
+
MOVE_INTERACTIVE_CONTROL: 'MoveInteractiveControl',
|
|
34
|
+
VERTICAL_SMALL_INTERCOM: 'VerticalSmallIntercom',
|
|
35
|
+
FULL_SMALL_INTERCOM: 'FullSmallIntercom',
|
|
36
|
+
VOICE_INTERCOM: 'VoiceIntercom',
|
|
37
|
+
FULL_VOICE_INTERCOM: 'FullVoiceIntercom',
|
|
38
|
+
FULL_TRAVEL_ROUTE_CONTROL: 'FullTravelRouteControl',
|
|
39
|
+
FULL_SCREEN: 'FullScreen',
|
|
40
|
+
VERTICAL_SCREEN: 'VerticalScreen'
|
|
41
|
+
};
|
|
21
42
|
export const decodeClarityDic = {
|
|
22
43
|
SS: 'ss',
|
|
23
44
|
// 省流量
|
package/lib/ui/index.d.ts
CHANGED
package/lib/ui/index.js
CHANGED
package/lib/ui/ui.d.ts
CHANGED
|
@@ -32,6 +32,8 @@ type Props = {
|
|
|
32
32
|
awakeStatus?: boolean | undefined;
|
|
33
33
|
eventRef?: React.RefObject<EventInstance>;
|
|
34
34
|
onPlayerTap?: (data: any) => void;
|
|
35
|
+
defaultAutoPlay?: boolean;
|
|
36
|
+
limitFlow?: boolean;
|
|
35
37
|
extend?: Record<string, any>;
|
|
36
38
|
};
|
|
37
39
|
export declare const IPCPlayerIntegration: React.MemoExoticComponent<(props: Props) => React.JSX.Element>;
|