@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
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export declare const Battery: import("react").FunctionComponent<{
|
|
3
|
-
IPCPlayerContext: import("../..").IpcContext;
|
|
4
|
-
} & {
|
|
5
|
-
devId: string;
|
|
6
|
-
brandColor: import("../..").RetAtom<string>;
|
|
7
|
-
verticalMic: import("../..").RetAtom<boolean>;
|
|
8
|
-
saveToAlbum: 0 | 1;
|
|
9
|
-
showPtzControlTip: boolean;
|
|
10
|
-
screenType: import("../..").RetAtom<import("../..").ScreenType>;
|
|
11
|
-
recording: import("../..").RetAtom<boolean>;
|
|
12
|
-
recordingDisabled: import("../..").RetAtom<boolean>;
|
|
13
|
-
mute: import("../..").RetAtom<boolean>;
|
|
14
|
-
intercom: import("../..").RetAtom<boolean>;
|
|
15
|
-
intercomMode: import("../..").RetAtom<import("@ray-js/ray-ipc-utils/lib/interface").IntercomMode>;
|
|
16
|
-
intercomSupported: import("../..").RetAtom<boolean>;
|
|
17
|
-
resolution: import("../..").RetAtom<string>;
|
|
18
|
-
resolutionList: import("../..").RetAtom<string[]>;
|
|
19
|
-
playState: import("../..").RetAtom<import("../..").PlayState>;
|
|
20
|
-
IPCPlayerInstance: import("../..").IpcContext;
|
|
21
|
-
topLeftContent: import("../..").RetAtom<import("../..").ComponentConfig<any & Record<string, any>>[]>;
|
|
22
|
-
topRightContent: import("../..").RetAtom<import("../..").ComponentConfig<any & Record<string, any>>[]>;
|
|
23
|
-
bottomLeftContent: import("../..").RetAtom<import("../..").ComponentConfig<any & Record<string, any>>[]>;
|
|
24
|
-
bottomRightContent: import("../..").RetAtom<import("../..").ComponentConfig<any & Record<string, any>>[]>;
|
|
25
|
-
absoluteContent: import("../..").RetAtom<import("../..").ComponentConfig<any & Record<string, any>>[]>;
|
|
26
|
-
ptzControlTipDisabled: import("../..").RetAtom<boolean>;
|
|
27
|
-
setPtzControlTipDisabled: (value: boolean) => void;
|
|
28
|
-
setBrandColor: (color: string) => void;
|
|
29
|
-
setVerticalMic: (value: boolean) => void;
|
|
30
|
-
setScreenType: (type: import("../..").ScreenType) => void;
|
|
31
|
-
setRecordingDisabled: (type: boolean) => void;
|
|
32
|
-
setResolution: (type: string) => void;
|
|
33
|
-
setResolutionList: (type: string[]) => void;
|
|
34
|
-
setRecording: (value: boolean, onlyUpdateAtom?: boolean | undefined) => Promise<import("../..").RecordInfoData>;
|
|
35
|
-
setIntercom: (value: boolean, onlyUpdateAtom?: boolean | undefined) => Promise<boolean>;
|
|
36
|
-
setMute: (value: boolean) => Promise<boolean>;
|
|
37
|
-
changeStreamStatus: (value: import("../..").PlayerStreamStatus) => void;
|
|
38
|
-
getStreamStatus: () => import("../..").PlayerStreamStatus;
|
|
39
|
-
setPlayState: (value: import("../..").PlayState) => void;
|
|
40
|
-
addContent: <T>(type: import("../..").ContentPlaceType, config: import("../..").ComponentConfig<T> | import("../..").ComponentConfig<T>[], position?: number | undefined) => void;
|
|
41
|
-
deleteContent: (type: import("../..").ContentPlaceType, id: string) => void;
|
|
42
|
-
getContent: () => {
|
|
43
|
-
topLeft: import("../..").ComponentConfig<any & Record<string, any>>[];
|
|
44
|
-
topRight: import("../..").ComponentConfig<any & Record<string, any>>[];
|
|
45
|
-
bottomLeft: import("../..").ComponentConfig<any & Record<string, any>>[];
|
|
46
|
-
bottomRight: import("../..").ComponentConfig<any & Record<string, any>>[];
|
|
47
|
-
absolute: import("../..").ComponentConfig<any & Record<string, any>>[];
|
|
48
|
-
};
|
|
49
|
-
updateContent: (type: import("../..").ContentPlaceType, data: import("../..").ComponentConfig<any & Record<string, any>>[]) => void;
|
|
50
|
-
hasContent: (type: import("../..").ContentPlaceType, id: string) => boolean;
|
|
51
|
-
hideContent: (type: import("../..").ContentPlaceType, id: string) => void;
|
|
52
|
-
showContent: (type: import("../..").ContentPlaceType, id: string) => void;
|
|
53
|
-
toast: import("../../ports.output").Toast;
|
|
54
|
-
event: import("../..").EventInstance;
|
|
55
|
-
multiCameraCtx: {
|
|
56
|
-
isSupport: boolean;
|
|
57
|
-
protocol: import("../..").VideoSplitProtocol;
|
|
58
|
-
layoutStyle: import("../..").RetAtom<import("../..").MultiCameraLayoutStyle>;
|
|
59
|
-
screenMode: import("../..").RetAtom<import("../..").MultiCameraScreenMode>;
|
|
60
|
-
nextLayoutStyle: import("../..").RetAtom<import("../..").MultiCameraLayoutStyle>;
|
|
61
|
-
selectedLenInfo: import("../..").RetAtom<import("../..").MultiCameraLenInfo>;
|
|
62
|
-
ptzStatus: import("../..").RetAtom<boolean>;
|
|
63
|
-
extendProps: {
|
|
64
|
-
type: number | undefined;
|
|
65
|
-
onSelectVideoIndex: (this: any, event: any) => void;
|
|
66
|
-
onLayoutStatusChanged: (this: any, event: any) => void;
|
|
67
|
-
onLocalizerViewLocated: (this: any, event: any) => Promise<void>;
|
|
68
|
-
};
|
|
69
|
-
setLayoutStyle: (style: import("../..").MultiCameraLayoutStyle) => void;
|
|
70
|
-
setScreenMode: (mode: import("../..").MultiCameraScreenMode) => void;
|
|
71
|
-
setPtzStatus: (value: boolean | ((prevValue: boolean) => boolean)) => void;
|
|
72
|
-
showLenNames: (value: boolean) => void;
|
|
73
|
-
setNextLayoutStyle: (value: import("../..").MultiCameraLayoutStyle | ((prevValue: import("../..").MultiCameraLayoutStyle) => import("../..").MultiCameraLayoutStyle)) => void;
|
|
74
|
-
getNextLayoutStyle: () => Promise<import("../..").MultiCameraLayoutStyle>;
|
|
75
|
-
};
|
|
76
|
-
} & {
|
|
77
|
-
className?: string | undefined;
|
|
78
|
-
}>;
|
|
79
|
-
export declare const BatteryFull: import("react").FunctionComponent<{
|
|
80
|
-
IPCPlayerContext: import("../..").IpcContext;
|
|
81
|
-
} & {
|
|
82
|
-
devId: string;
|
|
83
|
-
brandColor: import("../..").RetAtom<string>;
|
|
84
|
-
verticalMic: import("../..").RetAtom<boolean>;
|
|
85
|
-
saveToAlbum: 0 | 1;
|
|
86
|
-
showPtzControlTip: boolean;
|
|
87
|
-
screenType: import("../..").RetAtom<import("../..").ScreenType>;
|
|
88
|
-
recording: import("../..").RetAtom<boolean>;
|
|
89
|
-
recordingDisabled: import("../..").RetAtom<boolean>;
|
|
90
|
-
mute: import("../..").RetAtom<boolean>;
|
|
91
|
-
intercom: import("../..").RetAtom<boolean>;
|
|
92
|
-
intercomMode: import("../..").RetAtom<import("@ray-js/ray-ipc-utils/lib/interface").IntercomMode>;
|
|
93
|
-
intercomSupported: import("../..").RetAtom<boolean>;
|
|
94
|
-
resolution: import("../..").RetAtom<string>;
|
|
95
|
-
resolutionList: import("../..").RetAtom<string[]>;
|
|
96
|
-
playState: import("../..").RetAtom<import("../..").PlayState>;
|
|
97
|
-
IPCPlayerInstance: import("../..").IpcContext;
|
|
98
|
-
topLeftContent: import("../..").RetAtom<import("../..").ComponentConfig<any & Record<string, any>>[]>;
|
|
99
|
-
topRightContent: import("../..").RetAtom<import("../..").ComponentConfig<any & Record<string, any>>[]>;
|
|
100
|
-
bottomLeftContent: import("../..").RetAtom<import("../..").ComponentConfig<any & Record<string, any>>[]>;
|
|
101
|
-
bottomRightContent: import("../..").RetAtom<import("../..").ComponentConfig<any & Record<string, any>>[]>;
|
|
102
|
-
absoluteContent: import("../..").RetAtom<import("../..").ComponentConfig<any & Record<string, any>>[]>;
|
|
103
|
-
ptzControlTipDisabled: import("../..").RetAtom<boolean>;
|
|
104
|
-
setPtzControlTipDisabled: (value: boolean) => void;
|
|
105
|
-
setBrandColor: (color: string) => void;
|
|
106
|
-
setVerticalMic: (value: boolean) => void;
|
|
107
|
-
setScreenType: (type: import("../..").ScreenType) => void;
|
|
108
|
-
setRecordingDisabled: (type: boolean) => void;
|
|
109
|
-
setResolution: (type: string) => void;
|
|
110
|
-
setResolutionList: (type: string[]) => void;
|
|
111
|
-
setRecording: (value: boolean, onlyUpdateAtom?: boolean | undefined) => Promise<import("../..").RecordInfoData>;
|
|
112
|
-
setIntercom: (value: boolean, onlyUpdateAtom?: boolean | undefined) => Promise<boolean>;
|
|
113
|
-
setMute: (value: boolean) => Promise<boolean>;
|
|
114
|
-
changeStreamStatus: (value: import("../..").PlayerStreamStatus) => void;
|
|
115
|
-
getStreamStatus: () => import("../..").PlayerStreamStatus;
|
|
116
|
-
setPlayState: (value: import("../..").PlayState) => void;
|
|
117
|
-
addContent: <T>(type: import("../..").ContentPlaceType, config: import("../..").ComponentConfig<T> | import("../..").ComponentConfig<T>[], position?: number | undefined) => void;
|
|
118
|
-
deleteContent: (type: import("../..").ContentPlaceType, id: string) => void;
|
|
119
|
-
getContent: () => {
|
|
120
|
-
topLeft: import("../..").ComponentConfig<any & Record<string, any>>[];
|
|
121
|
-
topRight: import("../..").ComponentConfig<any & Record<string, any>>[];
|
|
122
|
-
bottomLeft: import("../..").ComponentConfig<any & Record<string, any>>[];
|
|
123
|
-
bottomRight: import("../..").ComponentConfig<any & Record<string, any>>[];
|
|
124
|
-
absolute: import("../..").ComponentConfig<any & Record<string, any>>[];
|
|
125
|
-
};
|
|
126
|
-
updateContent: (type: import("../..").ContentPlaceType, data: import("../..").ComponentConfig<any & Record<string, any>>[]) => void;
|
|
127
|
-
hasContent: (type: import("../..").ContentPlaceType, id: string) => boolean;
|
|
128
|
-
hideContent: (type: import("../..").ContentPlaceType, id: string) => void;
|
|
129
|
-
showContent: (type: import("../..").ContentPlaceType, id: string) => void;
|
|
130
|
-
toast: import("../../ports.output").Toast;
|
|
131
|
-
event: import("../..").EventInstance;
|
|
132
|
-
multiCameraCtx: {
|
|
133
|
-
isSupport: boolean;
|
|
134
|
-
protocol: import("../..").VideoSplitProtocol;
|
|
135
|
-
layoutStyle: import("../..").RetAtom<import("../..").MultiCameraLayoutStyle>;
|
|
136
|
-
screenMode: import("../..").RetAtom<import("../..").MultiCameraScreenMode>;
|
|
137
|
-
nextLayoutStyle: import("../..").RetAtom<import("../..").MultiCameraLayoutStyle>;
|
|
138
|
-
selectedLenInfo: import("../..").RetAtom<import("../..").MultiCameraLenInfo>;
|
|
139
|
-
ptzStatus: import("../..").RetAtom<boolean>;
|
|
140
|
-
extendProps: {
|
|
141
|
-
type: number | undefined;
|
|
142
|
-
onSelectVideoIndex: (this: any, event: any) => void;
|
|
143
|
-
onLayoutStatusChanged: (this: any, event: any) => void;
|
|
144
|
-
onLocalizerViewLocated: (this: any, event: any) => Promise<void>;
|
|
145
|
-
};
|
|
146
|
-
setLayoutStyle: (style: import("../..").MultiCameraLayoutStyle) => void;
|
|
147
|
-
setScreenMode: (mode: import("../..").MultiCameraScreenMode) => void;
|
|
148
|
-
setPtzStatus: (value: boolean | ((prevValue: boolean) => boolean)) => void;
|
|
149
|
-
showLenNames: (value: boolean) => void;
|
|
150
|
-
setNextLayoutStyle: (value: import("../..").MultiCameraLayoutStyle | ((prevValue: import("../..").MultiCameraLayoutStyle) => import("../..").MultiCameraLayoutStyle)) => void;
|
|
151
|
-
getNextLayoutStyle: () => Promise<import("../..").MultiCameraLayoutStyle>;
|
|
152
|
-
};
|
|
153
|
-
} & {
|
|
154
|
-
className?: string | undefined;
|
|
155
|
-
}>;
|
|
@@ -1,93 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { TouchEventHandler } from '@ray-js/components/lib/types';
|
|
3
|
-
import './voiceIntercom.less';
|
|
4
|
-
import { PlayerStreamStatus, IntercomMode, PlayState } from '../../interface';
|
|
5
|
-
export declare const VoiceIntercom: React.ForwardRefExoticComponent<{
|
|
6
|
-
IPCPlayerContext: import("../../interface").IpcContext;
|
|
7
|
-
} & {
|
|
8
|
-
devId: string;
|
|
9
|
-
brandColor: import("../../interface").RetAtom<string>;
|
|
10
|
-
verticalMic: import("../../interface").RetAtom<boolean>;
|
|
11
|
-
saveToAlbum: 0 | 1;
|
|
12
|
-
showPtzControlTip: boolean;
|
|
13
|
-
screenType: import("../../interface").RetAtom<import("../../interface").ScreenType>;
|
|
14
|
-
recording: import("../../interface").RetAtom<boolean>;
|
|
15
|
-
recordingDisabled: import("../../interface").RetAtom<boolean>;
|
|
16
|
-
mute: import("../../interface").RetAtom<boolean>;
|
|
17
|
-
intercom: import("../../interface").RetAtom<boolean>;
|
|
18
|
-
intercomMode: import("../../interface").RetAtom<IntercomMode>;
|
|
19
|
-
intercomSupported: import("../../interface").RetAtom<boolean>;
|
|
20
|
-
resolution: import("../../interface").RetAtom<string>;
|
|
21
|
-
resolutionList: import("../../interface").RetAtom<string[]>;
|
|
22
|
-
playState: import("../../interface").RetAtom<PlayState>;
|
|
23
|
-
IPCPlayerInstance: import("../../interface").IpcContext;
|
|
24
|
-
topLeftContent: import("../../interface").RetAtom<import("../../interface").ComponentConfig<any & Record<string, any>>[]>;
|
|
25
|
-
topRightContent: import("../../interface").RetAtom<import("../../interface").ComponentConfig<any & Record<string, any>>[]>;
|
|
26
|
-
bottomLeftContent: import("../../interface").RetAtom<import("../../interface").ComponentConfig<any & Record<string, any>>[]>;
|
|
27
|
-
bottomRightContent: import("../../interface").RetAtom<import("../../interface").ComponentConfig<any & Record<string, any>>[]>;
|
|
28
|
-
absoluteContent: import("../../interface").RetAtom<import("../../interface").ComponentConfig<any & Record<string, any>>[]>;
|
|
29
|
-
ptzControlTipDisabled: import("../../interface").RetAtom<boolean>;
|
|
30
|
-
setPtzControlTipDisabled: (value: boolean) => void;
|
|
31
|
-
setBrandColor: (color: string) => void;
|
|
32
|
-
setVerticalMic: (value: boolean) => void;
|
|
33
|
-
setScreenType: (type: import("../../interface").ScreenType) => void;
|
|
34
|
-
setRecordingDisabled: (type: boolean) => void;
|
|
35
|
-
setResolution: (type: string) => void;
|
|
36
|
-
setResolutionList: (type: string[]) => void;
|
|
37
|
-
setRecording: (value: boolean, onlyUpdateAtom?: boolean | undefined) => Promise<import("../../interface").RecordInfoData>;
|
|
38
|
-
setIntercom: (value: boolean, onlyUpdateAtom?: boolean | undefined) => Promise<boolean>;
|
|
39
|
-
setMute: (value: boolean) => Promise<boolean>;
|
|
40
|
-
changeStreamStatus: (value: PlayerStreamStatus) => void;
|
|
41
|
-
getStreamStatus: () => PlayerStreamStatus;
|
|
42
|
-
setPlayState: (value: PlayState) => void;
|
|
43
|
-
addContent: <T>(type: import("../../interface").ContentPlaceType, config: import("../../interface").ComponentConfig<T> | import("../../interface").ComponentConfig<T>[], position?: number | undefined) => void;
|
|
44
|
-
deleteContent: (type: import("../../interface").ContentPlaceType, id: string) => void;
|
|
45
|
-
getContent: () => {
|
|
46
|
-
topLeft: import("../../interface").ComponentConfig<any & Record<string, any>>[];
|
|
47
|
-
topRight: import("../../interface").ComponentConfig<any & Record<string, any>>[];
|
|
48
|
-
bottomLeft: import("../../interface").ComponentConfig<any & Record<string, any>>[];
|
|
49
|
-
bottomRight: import("../../interface").ComponentConfig<any & Record<string, any>>[];
|
|
50
|
-
absolute: import("../../interface").ComponentConfig<any & Record<string, any>>[];
|
|
51
|
-
};
|
|
52
|
-
updateContent: (type: import("../../interface").ContentPlaceType, data: import("../../interface").ComponentConfig<any & Record<string, any>>[]) => void;
|
|
53
|
-
hasContent: (type: import("../../interface").ContentPlaceType, id: string) => boolean;
|
|
54
|
-
hideContent: (type: import("../../interface").ContentPlaceType, id: string) => void;
|
|
55
|
-
showContent: (type: import("../../interface").ContentPlaceType, id: string) => void;
|
|
56
|
-
toast: import("../../ports.output").Toast;
|
|
57
|
-
event: import("../../interface").EventInstance;
|
|
58
|
-
multiCameraCtx: {
|
|
59
|
-
isSupport: boolean;
|
|
60
|
-
protocol: import("../../interface").VideoSplitProtocol;
|
|
61
|
-
layoutStyle: import("../../interface").RetAtom<import("../../interface").MultiCameraLayoutStyle>;
|
|
62
|
-
screenMode: import("../../interface").RetAtom<import("../../interface").MultiCameraScreenMode>;
|
|
63
|
-
nextLayoutStyle: import("../../interface").RetAtom<import("../../interface").MultiCameraLayoutStyle>;
|
|
64
|
-
selectedLenInfo: import("../../interface").RetAtom<import("../../interface").MultiCameraLenInfo>;
|
|
65
|
-
ptzStatus: import("../../interface").RetAtom<boolean>;
|
|
66
|
-
extendProps: {
|
|
67
|
-
type: number | undefined;
|
|
68
|
-
onSelectVideoIndex: (this: any, event: any) => void;
|
|
69
|
-
onLayoutStatusChanged: (this: any, event: any) => void;
|
|
70
|
-
onLocalizerViewLocated: (this: any, event: any) => Promise<void>;
|
|
71
|
-
};
|
|
72
|
-
setLayoutStyle: (style: import("../../interface").MultiCameraLayoutStyle) => void;
|
|
73
|
-
setScreenMode: (mode: import("../../interface").MultiCameraScreenMode) => void;
|
|
74
|
-
setPtzStatus: (value: boolean | ((prevValue: boolean) => boolean)) => void;
|
|
75
|
-
showLenNames: (value: boolean) => void;
|
|
76
|
-
setNextLayoutStyle: (value: import("../../interface").MultiCameraLayoutStyle | ((prevValue: import("../../interface").MultiCameraLayoutStyle) => import("../../interface").MultiCameraLayoutStyle)) => void;
|
|
77
|
-
getNextLayoutStyle: () => Promise<import("../../interface").MultiCameraLayoutStyle>;
|
|
78
|
-
};
|
|
79
|
-
} & {
|
|
80
|
-
style?: React.CSSProperties | undefined;
|
|
81
|
-
intercomClassName?: string | undefined;
|
|
82
|
-
iconClassName?: string | undefined;
|
|
83
|
-
iconImageClassName?: string | undefined;
|
|
84
|
-
icon?: string | React.ReactNode;
|
|
85
|
-
widthScale?: number | undefined;
|
|
86
|
-
heightScale?: number | undefined;
|
|
87
|
-
onTouchStart?: TouchEventHandler['onTouchStart'];
|
|
88
|
-
onTouchEnd?: TouchEventHandler['onTouchEnd'];
|
|
89
|
-
talkingColor?: string | undefined;
|
|
90
|
-
bgColor?: string | undefined;
|
|
91
|
-
mode?: "circle" | "verticalSmall" | "fullSmall" | undefined;
|
|
92
|
-
disabled?: boolean | undefined;
|
|
93
|
-
} & React.RefAttributes<unknown>>;
|