@azure/communication-react 1.4.2-alpha-202211300015.0 → 1.4.3-alpha-202212020014.0
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/CHANGELOG.stable.md +10 -1
- package/dist/communication-react.d.ts +80 -7
- package/dist/dist-cjs/communication-react/index.js +236 -89
- package/dist/dist-cjs/communication-react/index.js.map +1 -1
- package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js +1 -1
- package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js.map +1 -1
- package/dist/dist-esm/calling-component-bindings/src/utils/videoGalleryUtils.js +4 -2
- package/dist/dist-esm/calling-component-bindings/src/utils/videoGalleryUtils.js.map +1 -1
- package/dist/dist-esm/calling-stateful-client/src/CallContext.d.ts +2 -1
- package/dist/dist-esm/calling-stateful-client/src/CallContext.js +14 -0
- package/dist/dist-esm/calling-stateful-client/src/CallContext.js.map +1 -1
- package/dist/dist-esm/calling-stateful-client/src/Logger.d.ts +1 -0
- package/dist/dist-esm/calling-stateful-client/src/Logger.js +1 -0
- package/dist/dist-esm/calling-stateful-client/src/Logger.js.map +1 -1
- package/dist/dist-esm/calling-stateful-client/src/StatefulCallClient.js +11 -4
- package/dist/dist-esm/calling-stateful-client/src/StatefulCallClient.js.map +1 -1
- package/dist/dist-esm/calling-stateful-client/src/StreamUtils.js +33 -10
- package/dist/dist-esm/calling-stateful-client/src/StreamUtils.js.map +1 -1
- package/dist/dist-esm/calling-stateful-client/src/VideoStreamRendererViewDeclarative.d.ts +19 -0
- package/dist/dist-esm/calling-stateful-client/src/VideoStreamRendererViewDeclarative.js +44 -0
- package/dist/dist-esm/calling-stateful-client/src/VideoStreamRendererViewDeclarative.js.map +1 -0
- package/dist/dist-esm/communication-react/src/index.d.ts +4 -0
- package/dist/dist-esm/communication-react/src/index.js +4 -0
- package/dist/dist-esm/communication-react/src/index.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/UnsupportedBrowser.d.ts +5 -5
- package/dist/dist-esm/react-components/src/components/UnsupportedBrowser.js +4 -23
- package/dist/dist-esm/react-components/src/components/UnsupportedBrowser.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/UnsupportedBrowserVersion.d.ts +33 -0
- package/dist/dist-esm/react-components/src/components/UnsupportedBrowserVersion.js +15 -0
- package/dist/dist-esm/react-components/src/components/UnsupportedBrowserVersion.js.map +1 -0
- package/dist/dist-esm/react-components/src/components/UnsupportedEnvironment.d.ts +30 -0
- package/dist/dist-esm/react-components/src/components/UnsupportedEnvironment.js +29 -0
- package/dist/dist-esm/react-components/src/components/UnsupportedEnvironment.js.map +1 -0
- package/dist/dist-esm/react-components/src/components/UnsupportedOperatingSystem.d.ts +32 -0
- package/dist/dist-esm/react-components/src/components/UnsupportedOperatingSystem.js +14 -0
- package/dist/dist-esm/react-components/src/components/UnsupportedOperatingSystem.js.map +1 -0
- package/dist/dist-esm/react-components/src/components/index.d.ts +4 -0
- package/dist/dist-esm/react-components/src/components/index.js +2 -1
- package/dist/dist-esm/react-components/src/components/index.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/styles/{UnsupportedBrowser.styles.d.ts → UnsupportedEnvironment.styles.d.ts} +1 -1
- package/dist/dist-esm/react-components/src/components/styles/{UnsupportedBrowser.styles.js → UnsupportedEnvironment.styles.js} +6 -4
- package/dist/dist-esm/react-components/src/components/styles/UnsupportedEnvironment.styles.js.map +1 -0
- package/dist/dist-esm/react-components/src/localization/LocalizationProvider.d.ts +6 -0
- package/dist/dist-esm/react-components/src/localization/LocalizationProvider.js.map +1 -1
- package/dist/dist-esm/react-components/src/localization/locales/en-US/strings.json +11 -1
- package/dist/dist-esm/react-components/src/theming/icons.d.ts +1 -1
- package/dist/dist-esm/react-components/src/theming/icons.js +2 -2
- package/dist/dist-esm/react-components/src/theming/icons.js.map +1 -1
- package/dist/dist-esm/react-components/src/types/VideoGalleryParticipant.d.ts +2 -0
- package/dist/dist-esm/react-components/src/types/VideoGalleryParticipant.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/CallComposite.js +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/CallComposite.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.js +0 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/AzureCommunicationCallAdapter.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/pages/UnsupportedBrowser.d.ts +2 -0
- package/dist/dist-esm/react-composites/src/composites/CallComposite/pages/UnsupportedBrowser.js +20 -7
- package/dist/dist-esm/react-composites/src/composites/CallComposite/pages/UnsupportedBrowser.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/utils/Utils.js +8 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/utils/Utils.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/common/icons.d.ts +1 -1
- package/package.json +8 -8
- package/dist/dist-esm/react-components/src/components/styles/UnsupportedBrowser.styles.js.map +0 -1
package/CHANGELOG.stable.md
CHANGED
@@ -1,9 +1,18 @@
|
|
1
1
|
# Change Log - @azure/communication-react
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Wed, 30 Nov 2022 17:40:55 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
+
## [1.4.1](https://github.com/azure/communication-ui-library/tree/1.4.1)
|
8
|
+
|
9
|
+
Wed, 30 Nov 2022 17:40:55 GMT
|
10
|
+
[Compare changes](https://github.com/azure/communication-ui-library/compare/1.4.0...1.4.1)
|
11
|
+
|
12
|
+
This is a patch release for issue where the local video tile was not showing the users local stream despite the camera being on [more details](https://github.com/Azure/communication-ui-library/pull/2558):
|
13
|
+
|
14
|
+
- Fix: Local video not showing to local user but still broadcasts to others in the call. ([PR #2558](https://github.com/Azure/communication-ui-library/pull/2558) by 2684369+JamesBurnside@users.noreply.github.com).
|
15
|
+
|
7
16
|
## [1.4.0](https://github.com/azure/communication-ui-library/tree/1.4.0)
|
8
17
|
|
9
18
|
Fri, 21 Oct 2022 23:01:52 GMT
|
@@ -3814,6 +3814,10 @@ export declare interface ComponentStrings {
|
|
3814
3814
|
MicrophoneDomainPermissionsDenied: DomainPermissionsStrings;
|
3815
3815
|
/** Strings for unsupported browser UI */
|
3816
3816
|
UnsupportedBrowser: UnsupportedBrowserStrings;
|
3817
|
+
/** Strings for unsupported browser version UI */
|
3818
|
+
UnsupportedBrowserVersion: UnsupportedBrowserVersionStrings;
|
3819
|
+
/** Strings for unsupported browser version UI */
|
3820
|
+
UnsupportedOperatingSystem: UnsupportedOperatingSystemStrings;
|
3817
3821
|
/** Strings for BrowserPemissionDenied */
|
3818
3822
|
BrowserPermissionDenied: BrowserPermissionDeniedStrings;
|
3819
3823
|
/** Strings for BrowserPemissionDeniedIOS */
|
@@ -4550,7 +4554,7 @@ export declare const DEFAULT_COMPONENT_ICONS: {
|
|
4550
4554
|
DomainPermissionMic: JSX.Element;
|
4551
4555
|
DomainPermissionCameraDenied: JSX.Element;
|
4552
4556
|
DomainPermissionMicDenied: JSX.Element;
|
4553
|
-
|
4557
|
+
UnsupportedEnvironmentWarning: JSX.Element;
|
4554
4558
|
BrowserPermissionDeniedError: JSX.Element;
|
4555
4559
|
VideoTilePinned: JSX.Element;
|
4556
4560
|
VideoTileMoreOptions: JSX.Element;
|
@@ -4647,7 +4651,7 @@ export declare const DEFAULT_COMPOSITE_ICONS: {
|
|
4647
4651
|
DomainPermissionMic: JSX.Element;
|
4648
4652
|
DomainPermissionCameraDenied: JSX.Element;
|
4649
4653
|
DomainPermissionMicDenied: JSX.Element;
|
4650
|
-
|
4654
|
+
UnsupportedEnvironmentWarning: JSX.Element;
|
4651
4655
|
BrowserPermissionDeniedError: JSX.Element;
|
4652
4656
|
VideoTilePinned: JSX.Element;
|
4653
4657
|
VideoTileMoreOptions: JSX.Element;
|
@@ -7841,19 +7845,19 @@ export declare interface TypingIndicatorStylesProps extends BaseCustomStyles {
|
|
7841
7845
|
}
|
7842
7846
|
|
7843
7847
|
/**
|
7844
|
-
* UI to display to the user that the browser they are using is not supported by
|
7848
|
+
* UI to display to the user that the browser they are using is not supported by Azure Communications Calling service.
|
7845
7849
|
*
|
7846
7850
|
* @beta
|
7847
7851
|
*/
|
7848
7852
|
export declare const UnsupportedBrowser: (props: UnsupportedBrowserProps) => JSX.Element;
|
7849
7853
|
|
7850
7854
|
/**
|
7851
|
-
* props for UnsupportedBrowser UI
|
7855
|
+
* props for {@link UnsupportedBrowser} UI
|
7852
7856
|
*
|
7853
7857
|
* @beta
|
7854
7858
|
*/
|
7855
7859
|
export declare interface UnsupportedBrowserProps {
|
7856
|
-
/** Handler to perform
|
7860
|
+
/** Handler to perform an action when the help link is actioned */
|
7857
7861
|
onTroubleshootingClick?: () => void;
|
7858
7862
|
/** String overrides for the component */
|
7859
7863
|
strings: UnsupportedBrowserStrings;
|
@@ -7869,8 +7873,75 @@ export declare interface UnsupportedBrowserStrings {
|
|
7869
7873
|
primaryText: string;
|
7870
7874
|
/** String for the secondary text */
|
7871
7875
|
secondaryText: string;
|
7872
|
-
/** String for the help link */
|
7873
|
-
|
7876
|
+
/** String to display in the text for the help link */
|
7877
|
+
moreHelpLinkText: string;
|
7878
|
+
}
|
7879
|
+
|
7880
|
+
/**
|
7881
|
+
* UI to display to the user that the browser version they are using is out of date
|
7882
|
+
* and not supported by Azure Communications Calling service.
|
7883
|
+
*
|
7884
|
+
* @beta
|
7885
|
+
*/
|
7886
|
+
export declare const UnsupportedBrowserVersion: (props: UnsupportedBrowserVersionProps) => JSX.Element;
|
7887
|
+
|
7888
|
+
/**
|
7889
|
+
* props for {@link UnsupportedBrowserVersion} UI
|
7890
|
+
*
|
7891
|
+
* @beta
|
7892
|
+
*/
|
7893
|
+
export declare interface UnsupportedBrowserVersionProps {
|
7894
|
+
/** Handler to perform an action when the help link is actioned */
|
7895
|
+
onTroubleshootingClick?: () => void;
|
7896
|
+
/** String overrides for the component */
|
7897
|
+
strings: UnsupportedBrowserVersionStrings;
|
7898
|
+
}
|
7899
|
+
|
7900
|
+
/**
|
7901
|
+
* Strings for UnsupportedBrowser component
|
7902
|
+
*
|
7903
|
+
* @beta
|
7904
|
+
*/
|
7905
|
+
export declare interface UnsupportedBrowserVersionStrings {
|
7906
|
+
/** String for the primary text */
|
7907
|
+
primaryText: string;
|
7908
|
+
/** String for the secondary text */
|
7909
|
+
secondaryText: string;
|
7910
|
+
/** String to display in the text for the help link */
|
7911
|
+
moreHelpLinkText: string;
|
7912
|
+
}
|
7913
|
+
|
7914
|
+
/**
|
7915
|
+
* UI to display to the user that the operating system they are using is not supported by Azure Communications Calling service.
|
7916
|
+
*
|
7917
|
+
* @beta
|
7918
|
+
*/
|
7919
|
+
export declare const UnsupportedOperatingSystem: (props: UnsupportedOperatingSystemProps) => JSX.Element;
|
7920
|
+
|
7921
|
+
/**
|
7922
|
+
* Props for {@link UnsupportedOperatingSystem} UI
|
7923
|
+
*
|
7924
|
+
* @beta
|
7925
|
+
*/
|
7926
|
+
export declare interface UnsupportedOperatingSystemProps {
|
7927
|
+
/** Handler to perform a action when the help link is actioned */
|
7928
|
+
onTroubleshootingClick?: () => void;
|
7929
|
+
/** String overrides for the component */
|
7930
|
+
strings: UnsupportedOperatingSystemStrings;
|
7931
|
+
}
|
7932
|
+
|
7933
|
+
/**
|
7934
|
+
* Strings for UnsupportedBrowser component
|
7935
|
+
*
|
7936
|
+
* @beta
|
7937
|
+
*/
|
7938
|
+
export declare interface UnsupportedOperatingSystemStrings {
|
7939
|
+
/** String for the primary text */
|
7940
|
+
primaryText: string;
|
7941
|
+
/** String for the secondary text */
|
7942
|
+
secondaryText: string;
|
7943
|
+
/** String to display in the text for the help link */
|
7944
|
+
moreHelpLinkText: string;
|
7874
7945
|
}
|
7875
7946
|
|
7876
7947
|
/**
|
@@ -8218,6 +8289,8 @@ export declare interface VideoGalleryStream {
|
|
8218
8289
|
isMirrored?: boolean;
|
8219
8290
|
/** Render element of the video stream */
|
8220
8291
|
renderElement?: HTMLElement;
|
8292
|
+
/** Scaling mode of the video stream */
|
8293
|
+
scalingMode?: ViewScalingMode;
|
8221
8294
|
}
|
8222
8295
|
|
8223
8296
|
/**
|