@mindly/ui-components 3.7.3 → 3.7.4
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 +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/SwitchDeviceCard/SwitchDeviceCard.d.ts +2 -2
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/SwitchDeviceCard/SwitchDeviceCard.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -25,9 +25,9 @@ declare type VideoCallSwitchDevice = {
|
|
|
25
25
|
*/
|
|
26
26
|
disableDeviceHandler?: () => void;
|
|
27
27
|
/**
|
|
28
|
-
* If device
|
|
28
|
+
* If device disabled - false, in another way - true
|
|
29
29
|
*/
|
|
30
|
-
|
|
30
|
+
isDisabled?: boolean;
|
|
31
31
|
};
|
|
32
32
|
declare const SwitchDeviceCard: React.FC<VideoCallSwitchDevice>;
|
|
33
33
|
export default SwitchDeviceCard;
|
package/dist/index.d.ts
CHANGED
|
@@ -530,9 +530,9 @@ declare type VideoCallSwitchDevice = {
|
|
|
530
530
|
*/
|
|
531
531
|
disableDeviceHandler?: () => void;
|
|
532
532
|
/**
|
|
533
|
-
* If device
|
|
533
|
+
* If device disabled - false, in another way - true
|
|
534
534
|
*/
|
|
535
|
-
|
|
535
|
+
isDisabled?: boolean;
|
|
536
536
|
};
|
|
537
537
|
declare const SwitchDeviceCard: React.FC<VideoCallSwitchDevice>;
|
|
538
538
|
|