@azure/communication-react 1.5.1-alpha-202303300013 → 1.5.1-alpha-202303310013

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 (26) hide show
  1. package/dist/communication-react.d.ts +24 -7
  2. package/dist/dist-cjs/communication-react/index.js +517 -295
  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/react-composites/src/composites/CallComposite/Strings.d.ts +20 -0
  7. package/dist/dist-esm/react-composites/src/composites/CallComposite/Strings.js.map +1 -1
  8. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/CallArrangement.js +9 -7
  9. package/dist/dist-esm/react-composites/src/composites/CallComposite/components/CallArrangement.js.map +1 -1
  10. package/dist/dist-esm/react-composites/src/composites/CallComposite/pages/ConfigurationPage.js +19 -1
  11. package/dist/dist-esm/react-composites/src/composites/CallComposite/pages/ConfigurationPage.js.map +1 -1
  12. package/dist/dist-esm/react-composites/src/composites/CallComposite/styles/CallConfiguration.styles.d.ts +5 -1
  13. package/dist/dist-esm/react-composites/src/composites/CallComposite/styles/CallConfiguration.styles.js +20 -0
  14. package/dist/dist-esm/react-composites/src/composites/CallComposite/styles/CallConfiguration.styles.js.map +1 -1
  15. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/CallWithChatComposite.js +1 -1
  16. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/CallWithChatComposite.js.map +1 -1
  17. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/styles/CallWithChatCompositeStyles.js +2 -1
  18. package/dist/dist-esm/react-composites/src/composites/CallWithChatComposite/styles/CallWithChatCompositeStyles.js.map +1 -1
  19. package/dist/dist-esm/react-composites/src/composites/common/VideoEffectsPane.d.ts +2 -0
  20. package/dist/dist-esm/react-composites/src/composites/common/VideoEffectsPane.js +61 -3
  21. package/dist/dist-esm/react-composites/src/composites/common/VideoEffectsPane.js.map +1 -1
  22. package/dist/dist-esm/react-composites/src/composites/common/icons.d.ts +4 -7
  23. package/dist/dist-esm/react-composites/src/composites/common/icons.js +7 -1
  24. package/dist/dist-esm/react-composites/src/composites/common/icons.js.map +1 -1
  25. package/dist/dist-esm/react-composites/src/composites/localization/locales/en-US/strings.json +5 -0
  26. package/package.json +8 -8
@@ -1219,6 +1219,8 @@ export declare type CallCompositeIcons = {
1219
1219
  PeoplePaneOpenDialpad?: JSX.Element;
1220
1220
  DialpadStartCall?: JSX.Element;
1221
1221
  NoticePageInvalidRoom?: JSX.Element;
1222
+ BlurVideoBackground?: JSX.Element;
1223
+ RemoveVideoBackgroundEffect?: JSX.Element;
1222
1224
  };
1223
1225
 
1224
1226
  /**
@@ -1618,6 +1620,26 @@ export declare interface CallCompositeStrings {
1618
1620
  * More details text of the page shown to the user when the user attempts to join a room that cannot be found.
1619
1621
  */
1620
1622
  roomNotFoundDetails?: string;
1623
+ /**
1624
+ * Label for the button to open effects and title of the effects
1625
+ */
1626
+ effects?: string;
1627
+ /**
1628
+ * Label for the blur video background effect item
1629
+ */
1630
+ blurBackgroundEffectButtonLabel?: string;
1631
+ /**
1632
+ * Tooltip text for the blur video background effect item
1633
+ */
1634
+ blurBackgroundTooltip?: string;
1635
+ /**
1636
+ * Label for the remove video background effect item
1637
+ */
1638
+ removeBackgroundEffectButtonLabel?: string;
1639
+ /**
1640
+ * Tooltip text for the blur video background effect item
1641
+ */
1642
+ removeBackgroundTooltip?: string;
1621
1643
  /**
1622
1644
  * Title text of the page shown to the user when the user attempts to join a room to which they are not invited.
1623
1645
  */
@@ -4763,6 +4785,8 @@ export declare const DEFAULT_COMPOSITE_ICONS: {
4763
4785
  PeoplePaneOpenDialpad?: JSX.Element | undefined;
4764
4786
  DialpadStartCall?: JSX.Element | undefined;
4765
4787
  NoticePageInvalidRoom?: JSX.Element | undefined;
4788
+ BlurVideoBackground?: JSX.Element | undefined;
4789
+ RemoveVideoBackgroundEffect?: JSX.Element | undefined;
4766
4790
  ChevronLeft?: JSX.Element | undefined;
4767
4791
  ControlBarChatButtonActive?: JSX.Element | undefined;
4768
4792
  ControlBarChatButtonInactive?: JSX.Element | undefined;
@@ -4793,13 +4817,6 @@ export declare const DEFAULT_COMPOSITE_ICONS: {
4793
4817
  UnsupportedEnvironmentWarning: JSX.Element;
4794
4818
  BrowserPermissionDeniedError: JSX.Element;
4795
4819
  VideoTilePinned: JSX.Element;
4796
- /**
4797
- * Icons that can be overridden in one of the composites exported by this library.
4798
- *
4799
- * See {@link ChatCompositeIcons}, {@link CallCompositeIcons} and {@link CallWithChatCompositeIcons} for more targeted types.
4800
- *
4801
- * @public
4802
- */
4803
4820
  VideoTileMoreOptions: JSX.Element;
4804
4821
  VideoTileScaleFit: JSX.Element;
4805
4822
  VideoTileScaleFill: JSX.Element;