@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.
@@ -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;
@@ -1,6 +1,8 @@
1
- import { FC } from 'react';
1
+ import { CSSProperties, FC } from 'react';
2
2
  declare type AppFooterProps = {
3
3
  fullwidth?: boolean;
4
+ style?: CSSProperties;
5
+ className?: string;
4
6
  };
5
7
  declare const AppFooter: FC<AppFooterProps>;
6
8
  export default AppFooter;
@@ -3,6 +3,8 @@ declare type TextareaProps = {
3
3
  onSend: () => void;
4
4
  onChange: (value: string) => void;
5
5
  value?: string;
6
+ onFocus?: () => void;
7
+ onBlur?: () => void;
6
8
  };
7
9
  declare const Textarea: FC<TextareaProps>;
8
10
  export default Textarea;
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "3.7.9",
3
+ "version": "3.7.11",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "react-scripts start",