@azure/communication-react 1.4.2-alpha-202212010027.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 +39 -2
- package/dist/dist-cjs/communication-react/index.js +154 -65
- 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/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/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 +2 -0
- package/dist/dist-esm/communication-react/src/index.js +2 -0
- package/dist/dist-esm/communication-react/src/index.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/UnsupportedBrowser.d.ts +1 -1
- package/dist/dist-esm/react-components/src/components/UnsupportedBrowser.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/UnsupportedBrowserVersion.d.ts +1 -1
- package/dist/dist-esm/react-components/src/components/UnsupportedBrowserVersion.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/UnsupportedEnvironment.d.ts +2 -2
- package/dist/dist-esm/react-components/src/components/UnsupportedEnvironment.js +2 -2
- package/dist/dist-esm/react-components/src/components/UnsupportedEnvironment.js.map +1 -1
- 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 +2 -0
- package/dist/dist-esm/react-components/src/components/index.js +1 -0
- package/dist/dist-esm/react-components/src/components/index.js.map +1 -1
- package/dist/dist-esm/react-components/src/components/styles/UnsupportedEnvironment.styles.js +3 -2
- package/dist/dist-esm/react-components/src/components/styles/UnsupportedEnvironment.styles.js.map +1 -1
- package/dist/dist-esm/react-components/src/localization/LocalizationProvider.d.ts +3 -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 +7 -2
- 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/pages/UnsupportedBrowser.js +10 -2
- 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 +3 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/utils/Utils.js.map +1 -1
- package/package.json +8 -8
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
|
@@ -3816,6 +3816,8 @@ export declare interface ComponentStrings {
|
|
3816
3816
|
UnsupportedBrowser: UnsupportedBrowserStrings;
|
3817
3817
|
/** Strings for unsupported browser version UI */
|
3818
3818
|
UnsupportedBrowserVersion: UnsupportedBrowserVersionStrings;
|
3819
|
+
/** Strings for unsupported browser version UI */
|
3820
|
+
UnsupportedOperatingSystem: UnsupportedOperatingSystemStrings;
|
3819
3821
|
/** Strings for BrowserPemissionDenied */
|
3820
3822
|
BrowserPermissionDenied: BrowserPermissionDeniedStrings;
|
3821
3823
|
/** Strings for BrowserPemissionDeniedIOS */
|
@@ -7872,7 +7874,7 @@ export declare interface UnsupportedBrowserStrings {
|
|
7872
7874
|
/** String for the secondary text */
|
7873
7875
|
secondaryText: string;
|
7874
7876
|
/** String to display in the text for the help link */
|
7875
|
-
|
7877
|
+
moreHelpLinkText: string;
|
7876
7878
|
}
|
7877
7879
|
|
7878
7880
|
/**
|
@@ -7906,7 +7908,40 @@ export declare interface UnsupportedBrowserVersionStrings {
|
|
7906
7908
|
/** String for the secondary text */
|
7907
7909
|
secondaryText: string;
|
7908
7910
|
/** String to display in the text for the help link */
|
7909
|
-
|
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;
|
7910
7945
|
}
|
7911
7946
|
|
7912
7947
|
/**
|
@@ -8254,6 +8289,8 @@ export declare interface VideoGalleryStream {
|
|
8254
8289
|
isMirrored?: boolean;
|
8255
8290
|
/** Render element of the video stream */
|
8256
8291
|
renderElement?: HTMLElement;
|
8292
|
+
/** Scaling mode of the video stream */
|
8293
|
+
scalingMode?: ViewScalingMode;
|
8257
8294
|
}
|
8258
8295
|
|
8259
8296
|
/**
|