@azure/communication-react 1.10.1-alpha-202311160012 → 1.10.1-alpha-202311170012
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/communication-react.d.ts +29 -7
- package/dist/dist-cjs/communication-react/index.js +87 -64
- 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/react-components/src/index.d.ts +1 -0
- package/dist/dist-esm/react-components/src/index.js +1 -0
- package/dist/dist-esm/react-components/src/index.js.map +1 -1
- package/dist/dist-esm/react-components/src/theming/generateTheme.d.ts +8 -0
- package/dist/dist-esm/react-components/src/theming/generateTheme.js +59 -0
- package/dist/dist-esm/react-components/src/theming/generateTheme.js.map +1 -0
- package/dist/dist-esm/react-composites/src/composites/CallComposite/CallComposite.js +50 -15
- package/dist/dist-esm/react-composites/src/composites/CallComposite/CallComposite.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/Strings.d.ts +20 -4
- package/dist/dist-esm/react-composites/src/composites/CallComposite/Strings.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/CallAdapter.d.ts +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/CallAdapter.js +0 -2
- package/dist/dist-esm/react-composites/src/composites/CallComposite/adapter/CallAdapter.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/components/CallControls.js +2 -2
- package/dist/dist-esm/react-composites/src/composites/CallComposite/components/CallControls.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/styles/LobbyTile.styles.js +2 -2
- package/dist/dist-esm/react-composites/src/composites/CallComposite/styles/LobbyTile.styles.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/utils/Utils.d.ts +1 -1
- package/dist/dist-esm/react-composites/src/composites/CallComposite/utils/Utils.js +4 -21
- package/dist/dist-esm/react-composites/src/composites/CallComposite/utils/Utils.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/common/Drawer/MoreDrawer.js +1 -0
- package/dist/dist-esm/react-composites/src/composites/common/Drawer/MoreDrawer.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/common/icons.d.ts +8 -2
- package/dist/dist-esm/react-composites/src/composites/common/icons.js +7 -1
- package/dist/dist-esm/react-composites/src/composites/common/icons.js.map +1 -1
- package/dist/dist-esm/react-composites/src/composites/localization/locales/ar-SA/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/cs-CZ/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/de-DE/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/en-GB/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/en-US/strings.json +7 -3
- package/dist/dist-esm/react-composites/src/composites/localization/locales/es-ES/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/fi-FI/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/fr-FR/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/he-IL/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/it-IT/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/ja-JP/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/ko-KR/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/nb-NO/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/nl-NL/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/pl-PL/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/pt-BR/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/ru-RU/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/sv-SE/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/tr-TR/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/zh-CN/strings.json +2 -2
- package/dist/dist-esm/react-composites/src/composites/localization/locales/zh-TW/strings.json +2 -2
- package/package.json +1 -1
@@ -1429,6 +1429,9 @@ export declare type CallCompositeIcons = {
|
|
1429
1429
|
NoticePageJoinCallFailedDueToNoNetwork?: JSX.Element;
|
1430
1430
|
NoticePageLeftCall?: JSX.Element;
|
1431
1431
|
NoticePageRemovedFromCall?: JSX.Element;
|
1432
|
+
NoticePageNotInvitedToRoom?: JSX.Element;
|
1433
|
+
NoticePageRoomNotFound?: JSX.Element;
|
1434
|
+
NoticePageRoomNotValid?: JSX.Element;
|
1432
1435
|
OptionsCamera?: JSX.Element;
|
1433
1436
|
OptionsMic?: JSX.Element;
|
1434
1437
|
OptionsSpeaker?: JSX.Element;
|
@@ -1441,7 +1444,7 @@ export declare type CallCompositeIcons = {
|
|
1441
1444
|
PeoplePaneAddPerson?: JSX.Element;
|
1442
1445
|
PeoplePaneOpenDialpad?: JSX.Element;
|
1443
1446
|
DialpadStartCall?: JSX.Element;
|
1444
|
-
|
1447
|
+
NoticePageInviteToRoomRemoved?: JSX.Element;
|
1445
1448
|
BlurVideoBackground?: JSX.Element;
|
1446
1449
|
RemoveVideoBackgroundEffect?: JSX.Element;
|
1447
1450
|
GalleryOptions?: JSX.Element;
|
@@ -1582,7 +1585,7 @@ export declare type CallCompositeOptions = {
|
|
1582
1585
|
*
|
1583
1586
|
* @public
|
1584
1587
|
*/
|
1585
|
-
export declare type CallCompositePage = 'accessDeniedTeamsMeeting' | 'call' | 'configuration' | /* @conditional-compile-remove(PSTN-calls) */ 'hold' | 'joinCallFailedDueToNoNetwork' | 'leftCall' | 'leaving' | 'lobby' |
|
1588
|
+
export declare type CallCompositePage = 'accessDeniedTeamsMeeting' | 'call' | 'configuration' | /* @conditional-compile-remove(PSTN-calls) */ 'hold' | 'joinCallFailedDueToNoNetwork' | 'leftCall' | 'leaving' | 'lobby' | 'removedFromCall' | /* @conditional-compile-remove(unsupported-browser) */ 'unsupportedEnvironment' | /* @conditional-compile-remove(call-transfer) */ 'transferring';
|
1586
1589
|
|
1587
1590
|
/**
|
1588
1591
|
* Props for {@link CallComposite}.
|
@@ -1908,6 +1911,22 @@ export declare interface CallCompositeStrings {
|
|
1908
1911
|
* More details text of the page shown to the user when the user attempts to join a room that cannot be found.
|
1909
1912
|
*/
|
1910
1913
|
roomNotFoundDetails?: string;
|
1914
|
+
/**
|
1915
|
+
* Title text of the page shown to the user when the user attempts to join a room that is not valid.
|
1916
|
+
*/
|
1917
|
+
roomNotValidTitle: string;
|
1918
|
+
/**
|
1919
|
+
* More details text of the page shown to the user when the user attempts to join a room that is not valid.
|
1920
|
+
*/
|
1921
|
+
roomNotValidDetails?: string;
|
1922
|
+
/**
|
1923
|
+
* Title text of the page shown to the user when the user's permission to join the room is removed.
|
1924
|
+
*/
|
1925
|
+
inviteToRoomRemovedTitle: string;
|
1926
|
+
/**
|
1927
|
+
* More details text of the page shown to the user when the user's permission to join the room is removed.
|
1928
|
+
*/
|
1929
|
+
inviteToRoomRemovedDetails?: string;
|
1911
1930
|
/**
|
1912
1931
|
* Video Effects pane title.
|
1913
1932
|
*/
|
@@ -1945,13 +1964,13 @@ export declare interface CallCompositeStrings {
|
|
1945
1964
|
*/
|
1946
1965
|
cameraOffBackgroundEffectWarningText?: string;
|
1947
1966
|
/**
|
1948
|
-
* Title text of the page shown to the user when the user attempts to join a room
|
1967
|
+
* Title text of the page shown to the user when the user attempts to join a room they are not invited to.
|
1949
1968
|
*/
|
1950
|
-
|
1969
|
+
notInvitedToRoomTitle: string;
|
1951
1970
|
/**
|
1952
|
-
* More details text of the page shown to the user when the user attempts to join a room
|
1971
|
+
* More details text of the page shown to the user when the user attempts to join a room they are not invited to.
|
1953
1972
|
*/
|
1954
|
-
|
1973
|
+
notInvitedToRoomDetails?: string;
|
1955
1974
|
/**
|
1956
1975
|
* Control bar People button ToolTipContent
|
1957
1976
|
*/
|
@@ -5835,6 +5854,9 @@ export declare const DEFAULT_COMPOSITE_ICONS: {
|
|
5835
5854
|
NoticePageJoinCallFailedDueToNoNetwork?: JSX.Element | undefined;
|
5836
5855
|
NoticePageLeftCall?: JSX.Element | undefined;
|
5837
5856
|
NoticePageRemovedFromCall?: JSX.Element | undefined;
|
5857
|
+
NoticePageNotInvitedToRoom?: JSX.Element | undefined;
|
5858
|
+
NoticePageRoomNotFound?: JSX.Element | undefined;
|
5859
|
+
NoticePageRoomNotValid?: JSX.Element | undefined;
|
5838
5860
|
OptionsCamera: JSX.Element | React_2.JSX.Element;
|
5839
5861
|
OptionsMic: JSX.Element | React_2.JSX.Element;
|
5840
5862
|
OptionsSpeaker: JSX.Element | React_2.JSX.Element;
|
@@ -5845,7 +5867,7 @@ export declare const DEFAULT_COMPOSITE_ICONS: {
|
|
5845
5867
|
PeoplePaneAddPerson?: JSX.Element | undefined;
|
5846
5868
|
PeoplePaneOpenDialpad?: JSX.Element | undefined;
|
5847
5869
|
DialpadStartCall?: JSX.Element | undefined;
|
5848
|
-
|
5870
|
+
NoticePageInviteToRoomRemoved?: JSX.Element | undefined;
|
5849
5871
|
BlurVideoBackground?: JSX.Element | undefined;
|
5850
5872
|
RemoveVideoBackgroundEffect?: JSX.Element | undefined;
|
5851
5873
|
GalleryOptions?: JSX.Element | undefined;
|