@mindly/ui-components 3.7.10 → 3.7.11
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/cjs/index.js +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/AgoraMediaPlayer/NetworkQuality/NetworkQualityComponent.d.ts +4 -0
- package/dist/cjs/types/lib/SwitchDeviceCard/SwitchDeviceCard.styled.d.ts +3 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/AgoraMediaPlayer/NetworkQuality/NetworkQualityComponent.d.ts +4 -0
- package/dist/esm/types/lib/SwitchDeviceCard/SwitchDeviceCard.styled.d.ts +3 -0
- package/package.json +1 -1
|
@@ -9,6 +9,10 @@ declare type NetworkQualityComponentType = {
|
|
|
9
9
|
* https://docs.agora.io/en/video/API%20Reference/web_ng/interfaces/networkquality.html#uplinknetworkquality
|
|
10
10
|
*/
|
|
11
11
|
networkQuality?: number;
|
|
12
|
+
/**
|
|
13
|
+
* Is full screen video?
|
|
14
|
+
*/
|
|
15
|
+
fullScreen?: boolean;
|
|
12
16
|
};
|
|
13
17
|
declare const NetworkQualityComponent: React.FC<NetworkQualityComponentType>;
|
|
14
18
|
export default NetworkQualityComponent;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export declare const StyledVideoCallSwitchDeviceContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
|
+
export declare const StyledVideoCallSwitchDeviceHeading: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
|
+
export declare const StyledVideoCallSwitchDeviceList: import("styled-components").StyledComponent<"ul", any, {}, never>;
|