@mindly/ui-components 3.7.9 → 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 +12 -12
- 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/AppFooter/AppFooter.d.ts +3 -1
- package/dist/cjs/types/lib/Chat/Textarea/Textarea.d.ts +2 -0
- package/dist/cjs/types/lib/SwitchDeviceCard/SwitchDeviceCard.styled.d.ts +3 -0
- package/dist/esm/index.js +11 -11
- 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/AppFooter/AppFooter.d.ts +3 -1
- package/dist/esm/types/lib/Chat/Textarea/Textarea.d.ts +2 -0
- package/dist/esm/types/lib/SwitchDeviceCard/SwitchDeviceCard.styled.d.ts +3 -0
- package/dist/index.d.ts +4 -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>;
|
package/dist/index.d.ts
CHANGED
|
@@ -489,6 +489,8 @@ declare type TextareaProps = {
|
|
|
489
489
|
onSend: () => void;
|
|
490
490
|
onChange: (value: string) => void;
|
|
491
491
|
value?: string;
|
|
492
|
+
onFocus?: () => void;
|
|
493
|
+
onBlur?: () => void;
|
|
492
494
|
};
|
|
493
495
|
declare const Textarea: FC<TextareaProps>;
|
|
494
496
|
|
|
@@ -541,6 +543,8 @@ declare const SwitchDeviceCard: React.FC<VideoCallSwitchDevice>;
|
|
|
541
543
|
|
|
542
544
|
declare type AppFooterProps = {
|
|
543
545
|
fullwidth?: boolean;
|
|
546
|
+
style?: CSSProperties;
|
|
547
|
+
className?: string;
|
|
544
548
|
};
|
|
545
549
|
declare const AppFooter: FC<AppFooterProps>;
|
|
546
550
|
|