@azure/communication-react 1.5.1-alpha-202303050016 → 1.5.1-alpha-202303070015

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.
Files changed (27) hide show
  1. package/dist/communication-react.d.ts +10 -1
  2. package/dist/dist-cjs/communication-react/index.js +376 -400
  3. package/dist/dist-cjs/communication-react/index.js.map +1 -1
  4. package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js +1 -1
  5. package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js.map +1 -1
  6. package/dist/dist-esm/calling-component-bindings/src/handlers/createCommonHandlers.d.ts +4 -0
  7. package/dist/dist-esm/calling-component-bindings/src/handlers/createCommonHandlers.js +35 -1
  8. package/dist/dist-esm/calling-component-bindings/src/handlers/createCommonHandlers.js.map +1 -1
  9. package/dist/dist-esm/calling-stateful-client/src/DeviceManagerDeclarative.d.ts +1 -1
  10. package/dist/dist-esm/calling-stateful-client/src/DeviceManagerDeclarative.js +1 -1
  11. package/dist/dist-esm/calling-stateful-client/src/DeviceManagerDeclarative.js.map +1 -1
  12. package/dist/dist-esm/calling-stateful-client/src/Logger.d.ts +16 -29
  13. package/dist/dist-esm/calling-stateful-client/src/Logger.js +16 -29
  14. package/dist/dist-esm/calling-stateful-client/src/Logger.js.map +1 -1
  15. package/dist/dist-esm/calling-stateful-client/src/StreamUtils.js +132 -385
  16. package/dist/dist-esm/calling-stateful-client/src/StreamUtils.js.map +1 -1
  17. package/dist/dist-esm/calling-stateful-client/src/StreamUtilsLogging.d.ts +17 -0
  18. package/dist/dist-esm/calling-stateful-client/src/StreamUtilsLogging.js +198 -0
  19. package/dist/dist-esm/calling-stateful-client/src/StreamUtilsLogging.js.map +1 -0
  20. package/dist/dist-esm/react-components/src/components/VerticalGallery.js +8 -2
  21. package/dist/dist-esm/react-components/src/components/VerticalGallery.js.map +1 -1
  22. package/dist/dist-esm/react-components/src/identifiers/IdentifierProvider.d.ts +4 -0
  23. package/dist/dist-esm/react-components/src/identifiers/IdentifierProvider.js +5 -1
  24. package/dist/dist-esm/react-components/src/identifiers/IdentifierProvider.js.map +1 -1
  25. package/dist/dist-esm/react-composites/src/composites/CallComposite/hooks/useHandlers.js +12 -0
  26. package/dist/dist-esm/react-composites/src/composites/CallComposite/hooks/useHandlers.js.map +1 -1
  27. package/package.json +8 -8
@@ -19,6 +19,8 @@
19
19
 
20
20
  import { AddPhoneNumberOptions } from '@azure/communication-calling';
21
21
  import { AudioDeviceInfo } from '@azure/communication-calling';
22
+ import { BackgroundBlurConfig } from '@azure/communication-calling-effects';
23
+ import { BackgroundReplacementConfig } from '@azure/communication-calling-effects';
22
24
  import { Call } from '@azure/communication-calling';
23
25
  import { CallAgent } from '@azure/communication-calling';
24
26
  import { CallClient } from '@azure/communication-calling';
@@ -3604,6 +3606,9 @@ export declare interface CommonCallingHandlers {
3604
3606
  onRemoveParticipant(participant: CommunicationIdentifier): Promise<void>;
3605
3607
  askDevicePermission: (constrain: PermissionConstraints) => Promise<void>;
3606
3608
  onStartCall: (participants: (CommunicationUserIdentifier | PhoneNumberIdentifier | UnknownIdentifier)[], options?: StartCallOptions) => void;
3609
+ onRemoveVideoBackgroundEffects: () => Promise<void>;
3610
+ onBlurVideoBackground: (bgBlurConfig?: BackgroundBlurConfig) => Promise<void>;
3611
+ onReplaceVideoBackground: (bgReplacementConfig: BackgroundReplacementConfig) => Promise<void>;
3607
3612
  }
3608
3613
 
3609
3614
  /**
@@ -5708,6 +5713,10 @@ export declare interface _Identifiers {
5708
5713
  overflowGalleryLeftNavButton: string;
5709
5714
  /** `data-ui-id` value for overflow gallery component's right navigation button */
5710
5715
  overflowGalleryRightNavButton: string;
5716
+ /** `data-ui-id` value for `VerticalGallery` Component's children video tiles */
5717
+ verticalGalleryVideoTile: string;
5718
+ /** `data-ui-id` value for `VerticalGallery` Component's page counter */
5719
+ verticalGalleryPageCounter: string;
5711
5720
  }
5712
5721
 
5713
5722
  /**
@@ -7632,7 +7641,7 @@ export declare interface StatefulDeviceManager extends DeviceManager {
7632
7641
  *
7633
7642
  * @beta
7634
7643
  */
7635
- getUnparentedVideoStreams: LocalVideoStream[];
7644
+ getUnparentedVideoStreams: () => LocalVideoStream[];
7636
7645
  }
7637
7646
 
7638
7647
  /**