@azure/communication-react 1.8.1-alpha-202310060013 → 1.8.1-alpha-202310070012

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/dist-cjs/communication-react/index.js +35 -23
  2. package/dist/dist-cjs/communication-react/index.js.map +1 -1
  3. package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js +1 -1
  4. package/dist/dist-esm/acs-ui-common/src/telemetryVersion.js.map +1 -1
  5. package/dist/dist-esm/react-composites/src/composites/common/CaptionsBanner.js +15 -3
  6. package/dist/dist-esm/react-composites/src/composites/common/CaptionsBanner.js.map +1 -1
  7. package/dist/dist-esm/react-composites/src/composites/localization/locales/ar-SA/strings.json +2 -0
  8. package/dist/dist-esm/react-composites/src/composites/localization/locales/cs-CZ/strings.json +2 -0
  9. package/dist/dist-esm/react-composites/src/composites/localization/locales/de-DE/strings.json +2 -0
  10. package/dist/dist-esm/react-composites/src/composites/localization/locales/en-GB/strings.json +2 -0
  11. package/dist/dist-esm/react-composites/src/composites/localization/locales/es-ES/strings.json +2 -0
  12. package/dist/dist-esm/react-composites/src/composites/localization/locales/fi-FI/strings.json +2 -0
  13. package/dist/dist-esm/react-composites/src/composites/localization/locales/fr-FR/strings.json +2 -0
  14. package/dist/dist-esm/react-composites/src/composites/localization/locales/he-IL/strings.json +2 -0
  15. package/dist/dist-esm/react-composites/src/composites/localization/locales/it-IT/strings.json +2 -0
  16. package/dist/dist-esm/react-composites/src/composites/localization/locales/ja-JP/strings.json +2 -0
  17. package/dist/dist-esm/react-composites/src/composites/localization/locales/ko-KR/strings.json +2 -0
  18. package/dist/dist-esm/react-composites/src/composites/localization/locales/nb-NO/strings.json +2 -0
  19. package/dist/dist-esm/react-composites/src/composites/localization/locales/nl-NL/strings.json +2 -0
  20. package/dist/dist-esm/react-composites/src/composites/localization/locales/pl-PL/strings.json +2 -0
  21. package/dist/dist-esm/react-composites/src/composites/localization/locales/pt-BR/strings.json +2 -0
  22. package/dist/dist-esm/react-composites/src/composites/localization/locales/ru-RU/strings.json +2 -0
  23. package/dist/dist-esm/react-composites/src/composites/localization/locales/sv-SE/strings.json +2 -0
  24. package/dist/dist-esm/react-composites/src/composites/localization/locales/tr-TR/strings.json +2 -0
  25. package/dist/dist-esm/react-composites/src/composites/localization/locales/zh-CN/strings.json +2 -0
  26. package/dist/dist-esm/react-composites/src/composites/localization/locales/zh-TW/strings.json +2 -0
  27. package/package.json +8 -8
@@ -2,5 +2,5 @@
2
2
  // Copyright (c) Microsoft Corporation.
3
3
  // Licensed under the MIT License.
4
4
  // GENERATED FILE. DO NOT EDIT MANUALLY.
5
- module.exports = '1.8.1-alpha-202310060013';
5
+ module.exports = '1.8.1-alpha-202310070012';
6
6
  //# sourceMappingURL=telemetryVersion.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"telemetryVersion.js","sourceRoot":"","sources":["../../../../../acs-ui-common/src/telemetryVersion.js"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;AAElC,wCAAwC;AAExC,MAAM,CAAC,OAAO,GAAG,0BAA0B,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\n// GENERATED FILE. DO NOT EDIT MANUALLY.\n\nmodule.exports = '1.8.1-alpha-202310060013';\n"]}
1
+ {"version":3,"file":"telemetryVersion.js","sourceRoot":"","sources":["../../../../../acs-ui-common/src/telemetryVersion.js"],"names":[],"mappings":";AAAA,uCAAuC;AACvC,kCAAkC;AAElC,wCAAwC;AAExC,MAAM,CAAC,OAAO,GAAG,0BAA0B,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\n// GENERATED FILE. DO NOT EDIT MANUALLY.\n\nmodule.exports = '1.8.1-alpha-202310070012';\n"]}
@@ -2,7 +2,7 @@
2
2
  // Licensed under the MIT License.
3
3
  import React from 'react';
4
4
  /* @conditional-compile-remove(close-captions) */
5
- import { useState } from 'react';
5
+ import { useState, useEffect } from 'react';
6
6
  /* @conditional-compile-remove(close-captions) */
7
7
  import { _CaptionsBanner } from "../../../../react-components/src";
8
8
  /* @conditional-compile-remove(close-captions) */
@@ -21,8 +21,6 @@ import { _captionsBannerSelector } from "../../../../calling-component-bindings/
21
21
  import { useLocale } from '../localization';
22
22
  /* @conditional-compile-remove(close-captions) */
23
23
  const mobileViewBannerWidth = '90%';
24
- /* @conditional-compile-remove(close-captions) */
25
- const desktopViewBannerWidth = '35rem';
26
24
  /** @private */
27
25
  export const CaptionsBanner = (props) => {
28
26
  /* @conditional-compile-remove(close-captions) */
@@ -55,6 +53,20 @@ export const CaptionsBanner = (props) => {
55
53
  const captionsBannerStrings = {
56
54
  captionsBannerSpinnerText: strings.captionsBannerSpinnerText
57
55
  };
56
+ /* @conditional-compile-remove(close-captions) */
57
+ const { innerWidth: width } = window;
58
+ /* @conditional-compile-remove(close-captions) */
59
+ const [windowWidth, setWindowWidth] = useState(width);
60
+ /* @conditional-compile-remove(close-captions) */
61
+ useEffect(() => {
62
+ function handleResize() {
63
+ setWindowWidth(window.innerWidth);
64
+ }
65
+ window.addEventListener('resize', handleResize);
66
+ return () => window.removeEventListener('resize', handleResize);
67
+ }, []);
68
+ /* @conditional-compile-remove(close-captions) */
69
+ const desktopViewBannerWidth = windowWidth > 620 ? '35rem' : '80%';
58
70
  return (React.createElement(React.Fragment, null,
59
71
  /* @conditional-compile-remove(close-captions) */ isCaptionsSettingsOpen && (React.createElement(CaptionsSettingsModal, { showCaptionsSettingsModal: isCaptionsSettingsOpen, onDismissCaptionsSettings: onDismissCaptionsSettings, changeCaptionLanguage: true })),
60
72
  /* @conditional-compile-remove(close-captions) */ React.createElement("div", { className: containerClassName },
@@ -1 +1 @@
1
- {"version":3,"file":"CaptionsBanner.js","sourceRoot":"","sources":["../../../../../../../react-composites/src/composites/common/CaptionsBanner.tsx"],"names":[],"mappings":"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","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport React from 'react';\n/* @conditional-compile-remove(close-captions) */\nimport { useState } from 'react';\n/* @conditional-compile-remove(close-captions) */\nimport { _CaptionsBanner, _CaptionsBannerStrings } from '@internal/react-components';\n/* @conditional-compile-remove(close-captions) */\nimport { _DrawerMenu, _DrawerMenuItemProps, _DrawerSurface } from '@internal/react-components';\n/* @conditional-compile-remove(close-captions) */\nimport { mergeStyles, Stack } from '@fluentui/react';\n/* @conditional-compile-remove(close-captions) */\nimport { CaptionsSettingsModal } from './CaptionsSettingsModal';\n/* @conditional-compile-remove(close-captions) */\nimport { CaptionsBannerMoreButton } from './CaptionsBannerMoreButton';\n/* @conditional-compile-remove(close-captions) */\nimport { useAdaptedSelector } from '../CallComposite/hooks/useAdaptedSelector';\n/* @conditional-compile-remove(close-captions) */\nimport { useHandlers } from '../CallComposite/hooks/useHandlers';\n/* @conditional-compile-remove(close-captions) */\nimport { _captionsBannerSelector } from '@internal/calling-component-bindings';\n\n/* @conditional-compile-remove(close-captions) */\nimport { useLocale } from '../localization';\n\n/* @conditional-compile-remove(close-captions) */\nconst mobileViewBannerWidth = '90%';\n/* @conditional-compile-remove(close-captions) */\nconst desktopViewBannerWidth = '35rem';\n\n/** @private */\nexport const CaptionsBanner = (props: { isMobile: boolean }): JSX.Element => {\n /* @conditional-compile-remove(close-captions) */\n const captionsBannerProps = useAdaptedSelector(_captionsBannerSelector);\n /* @conditional-compile-remove(close-captions) */\n const handlers = useHandlers(_CaptionsBanner);\n /* @conditional-compile-remove(close-captions) */\n const [isCaptionsSettingsOpen, setIsCaptionsSettingsOpen] = useState<boolean>(false);\n /* @conditional-compile-remove(close-captions) */\n const onClickCaptionsSettings = (): void => {\n setIsCaptionsSettingsOpen(true);\n };\n /* @conditional-compile-remove(close-captions) */\n const onDismissCaptionsSettings = (): void => {\n setIsCaptionsSettingsOpen(false);\n };\n /* @conditional-compile-remove(close-captions) */\n const containerClassName = mergeStyles({\n position: 'relative'\n });\n /* @conditional-compile-remove(close-captions) */\n const floatingChildClassName = mergeStyles({\n position: 'absolute',\n right: 0,\n top: 0\n });\n\n /* @conditional-compile-remove(close-captions) */\n const strings = useLocale().strings.call;\n\n /* @conditional-compile-remove(close-captions) */\n const captionsBannerStrings: _CaptionsBannerStrings = {\n captionsBannerSpinnerText: strings.captionsBannerSpinnerText\n };\n return (\n <>\n {\n /* @conditional-compile-remove(close-captions) */ isCaptionsSettingsOpen && (\n <CaptionsSettingsModal\n showCaptionsSettingsModal={isCaptionsSettingsOpen}\n onDismissCaptionsSettings={onDismissCaptionsSettings}\n changeCaptionLanguage\n />\n )\n }\n {\n /* @conditional-compile-remove(close-captions) */ <div className={containerClassName}>\n <Stack horizontalAlign=\"center\">\n <Stack.Item style={{ width: props.isMobile ? mobileViewBannerWidth : desktopViewBannerWidth }}>\n <_CaptionsBanner\n {...captionsBannerProps}\n {...handlers}\n formFactor={props.isMobile ? 'compact' : 'default'}\n strings={captionsBannerStrings}\n />\n </Stack.Item>\n </Stack>\n {!props.isMobile && captionsBannerProps.isCaptionsOn && (\n <div className={floatingChildClassName}>\n <CaptionsBannerMoreButton onCaptionsSettingsClick={onClickCaptionsSettings} />\n </div>\n )}\n </div>\n }\n </>\n );\n};\n\"../../../../react-components/src\"\"../../../../calling-component-bindings/src\""]}
1
+ {"version":3,"file":"CaptionsBanner.js","sourceRoot":"","sources":["../../../../../../../react-composites/src/composites/common/CaptionsBanner.tsx"],"names":[],"mappings":"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","sourcesContent":["// Copyright (c) Microsoft Corporation.\n// Licensed under the MIT License.\n\nimport React from 'react';\n/* @conditional-compile-remove(close-captions) */\nimport { useState, useEffect } from 'react';\n/* @conditional-compile-remove(close-captions) */\nimport { _CaptionsBanner, _CaptionsBannerStrings } from '@internal/react-components';\n/* @conditional-compile-remove(close-captions) */\nimport { _DrawerMenu, _DrawerMenuItemProps, _DrawerSurface } from '@internal/react-components';\n/* @conditional-compile-remove(close-captions) */\nimport { mergeStyles, Stack } from '@fluentui/react';\n/* @conditional-compile-remove(close-captions) */\nimport { CaptionsSettingsModal } from './CaptionsSettingsModal';\n/* @conditional-compile-remove(close-captions) */\nimport { CaptionsBannerMoreButton } from './CaptionsBannerMoreButton';\n/* @conditional-compile-remove(close-captions) */\nimport { useAdaptedSelector } from '../CallComposite/hooks/useAdaptedSelector';\n/* @conditional-compile-remove(close-captions) */\nimport { useHandlers } from '../CallComposite/hooks/useHandlers';\n/* @conditional-compile-remove(close-captions) */\nimport { _captionsBannerSelector } from '@internal/calling-component-bindings';\n\n/* @conditional-compile-remove(close-captions) */\nimport { useLocale } from '../localization';\n\n/* @conditional-compile-remove(close-captions) */\nconst mobileViewBannerWidth = '90%';\n\n/** @private */\nexport const CaptionsBanner = (props: { isMobile: boolean }): JSX.Element => {\n /* @conditional-compile-remove(close-captions) */\n const captionsBannerProps = useAdaptedSelector(_captionsBannerSelector);\n /* @conditional-compile-remove(close-captions) */\n const handlers = useHandlers(_CaptionsBanner);\n /* @conditional-compile-remove(close-captions) */\n const [isCaptionsSettingsOpen, setIsCaptionsSettingsOpen] = useState<boolean>(false);\n /* @conditional-compile-remove(close-captions) */\n const onClickCaptionsSettings = (): void => {\n setIsCaptionsSettingsOpen(true);\n };\n /* @conditional-compile-remove(close-captions) */\n const onDismissCaptionsSettings = (): void => {\n setIsCaptionsSettingsOpen(false);\n };\n /* @conditional-compile-remove(close-captions) */\n const containerClassName = mergeStyles({\n position: 'relative'\n });\n /* @conditional-compile-remove(close-captions) */\n const floatingChildClassName = mergeStyles({\n position: 'absolute',\n right: 0,\n top: 0\n });\n\n /* @conditional-compile-remove(close-captions) */\n const strings = useLocale().strings.call;\n\n /* @conditional-compile-remove(close-captions) */\n const captionsBannerStrings: _CaptionsBannerStrings = {\n captionsBannerSpinnerText: strings.captionsBannerSpinnerText\n };\n /* @conditional-compile-remove(close-captions) */\n const { innerWidth: width } = window;\n /* @conditional-compile-remove(close-captions) */\n const [windowWidth, setWindowWidth] = useState(width);\n /* @conditional-compile-remove(close-captions) */\n useEffect(() => {\n function handleResize(): void {\n setWindowWidth(window.innerWidth);\n }\n\n window.addEventListener('resize', handleResize);\n return () => window.removeEventListener('resize', handleResize);\n }, []);\n\n /* @conditional-compile-remove(close-captions) */\n const desktopViewBannerWidth = windowWidth > 620 ? '35rem' : '80%';\n\n return (\n <>\n {\n /* @conditional-compile-remove(close-captions) */ isCaptionsSettingsOpen && (\n <CaptionsSettingsModal\n showCaptionsSettingsModal={isCaptionsSettingsOpen}\n onDismissCaptionsSettings={onDismissCaptionsSettings}\n changeCaptionLanguage\n />\n )\n }\n {\n /* @conditional-compile-remove(close-captions) */ <div className={containerClassName}>\n <Stack horizontalAlign=\"center\">\n <Stack.Item style={{ width: props.isMobile ? mobileViewBannerWidth : desktopViewBannerWidth }}>\n <_CaptionsBanner\n {...captionsBannerProps}\n {...handlers}\n formFactor={props.isMobile ? 'compact' : 'default'}\n strings={captionsBannerStrings}\n />\n </Stack.Item>\n </Stack>\n {!props.isMobile && captionsBannerProps.isCaptionsOn && (\n <div className={floatingChildClassName}>\n <CaptionsBannerMoreButton onCaptionsSettingsClick={onClickCaptionsSettings} />\n </div>\n )}\n </div>\n }\n </>\n );\n};\n\"../../../../react-components/src\"\"../../../../calling-component-bindings/src\""]}
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "تخطيط ديناميكي",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "تخطيط المعرض",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "المحتوى المركز عليه",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "معرض كبير",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "تم تعطيل الكاميرا الخاصة بك. لم يعد بإمكانك مشاركة الفيديو.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "نص الكلام مباشرةً",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "اللغة المنطوقة",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "لغة التسمية التوضيحية",
249
+ "moreDrawerGalleryOptionsMenuTitle": "خيارات المعرض",
248
250
  "peopleButtonLabel": "الأشخاص",
249
251
  "selectedPeopleButtonLabel": "تم تحديد زر الأشخاص",
250
252
  "peopleButtonTooltipOpen": "إظهار المشاركين",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Dynamické rozložení",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Rozložení galerie",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Prioritní obsah",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Velká galerie",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "Vaše kamera byla zakázána. Už nemůžete sdílet video.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Živé titulky",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Mluvený jazyk",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Jazyk titulků",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Možnosti galerie",
248
250
  "peopleButtonLabel": "Lidé",
249
251
  "selectedPeopleButtonLabel": "Vybráno tlačítko Lidé",
250
252
  "peopleButtonTooltipOpen": "Zobrazit účastníky",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Dynamisches Layout",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Kataloglayout",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Fokussierte Inhalte",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Große Galerie",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "Ihre Kamera wurde deaktiviert. Sie können kein Video mehr freigeben.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Liveuntertitel",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Gesprochene Sprache",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Sprache für Untertitel",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Katalogoptionen",
248
250
  "peopleButtonLabel": "Personen",
249
251
  "selectedPeopleButtonLabel": "Schaltfläche \"Personen\" ausgewählt",
250
252
  "peopleButtonTooltipOpen": "Teilnehmende anzeigen",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Dynamic layout",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Gallery layout",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Focused content",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Large Gallery",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "Your camera has been disabled. You can no longer share video.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Live captions",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Spoken language",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Caption language",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Gallery options",
248
250
  "peopleButtonLabel": "People",
249
251
  "selectedPeopleButtonLabel": "People Button Selected",
250
252
  "peopleButtonTooltipOpen": "Show participants",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Diseño dinámico",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Diseño de la galería",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Contenido centrado",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Galería de gran tamaño",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "La cámara se ha deshabilitado. Ya no puedes compartir vídeo.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Subtítulos en directo",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Idioma hablado",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Idioma de subtítulos",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Opciones de la Galería",
248
250
  "peopleButtonLabel": "Contactos",
249
251
  "selectedPeopleButtonLabel": "Se seleccionó el botón Contactos",
250
252
  "peopleButtonTooltipOpen": "Mostrar participantes",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Dynaaminen asettelu",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Valikoiman asettelu",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Kohdistettu sisältö",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Suuri galleria",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "Kamerasi on poistettu käytöstä. Et voi enää jakaa videota.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Live-tekstitykset",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Puhuttu kieli",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Tekstityksen kieli",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Valikoiman asetukset",
248
250
  "peopleButtonLabel": "Ihmiset",
249
251
  "selectedPeopleButtonLabel": "Henkilöt-painike valittu",
250
252
  "peopleButtonTooltipOpen": "Näytä osallistujat",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Disposition dynamique",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Disposition de la galerie",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Un contenu ciblé",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Grande galerie",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "Votre caméra a été désactivée. Vous ne pouvez plus partager de vidéo.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Sous-titres en direct",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Langue parlée",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Langue des sous-titres",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Options de galerie",
248
250
  "peopleButtonLabel": "Personnes",
249
251
  "selectedPeopleButtonLabel": "Bouton Contacts sélectionné",
250
252
  "peopleButtonTooltipOpen": "Afficher les participants",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "פריסה דינמית",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "פריסת גלריה",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "תוכן ממוקד",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "גלריה גדולה",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "המצלמה שלך הפכה ללא זמינה. כבר אינך יכול לשתף וידאו.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "כתוביות חיות",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "שפה מדוברת",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "שפת כתוביות",
249
+ "moreDrawerGalleryOptionsMenuTitle": "אפשרויות גלריה",
248
250
  "peopleButtonLabel": "אנשים",
249
251
  "selectedPeopleButtonLabel": "לחצן 'אנשים' נבחר",
250
252
  "peopleButtonTooltipOpen": "הצג משתתפים",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Layout dinamico",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Layout raccolta",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Contenuto mirato",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Galleria estesa",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "La fotocamera è stata disattivata. Non è più possibile condividere video.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Sottotitoli in tempo reale",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Lingua parlata",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Lingua sottotitoli",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Opzioni della raccolta",
248
250
  "peopleButtonLabel": "Persone",
249
251
  "selectedPeopleButtonLabel": "Pulsante Persone selezionato",
250
252
  "peopleButtonTooltipOpen": "Mostra partecipanti",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "動的なレイアウト",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "ギャラリーのレイアウト",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "優先コンテンツ",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "ラージ ギャラリー",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "カメラが無効になっています。ビデオを共有できなくなりました。",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "ライブ キャプション",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "音声言語",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "字幕言語",
249
+ "moreDrawerGalleryOptionsMenuTitle": "ギャラリーのオプション",
248
250
  "peopleButtonLabel": "ユーザー",
249
251
  "selectedPeopleButtonLabel": "[ユーザー] ボタンが選択されました",
250
252
  "peopleButtonTooltipOpen": "参加者を表示",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "동적 레이아웃",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "갤러리 레이아웃",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "중요 콘텐츠",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "대형 갤러리",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "카메라를 사용할 수 없습니다. 더 이상 비디오를 공유할 수 없습니다.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "라이브 캡션",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "음성 언어",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "캡션 언어",
249
+ "moreDrawerGalleryOptionsMenuTitle": "갤러리 옵션",
248
250
  "peopleButtonLabel": "사용자",
249
251
  "selectedPeopleButtonLabel": "사용자 단추 선택됨",
250
252
  "peopleButtonTooltipOpen": "참가자 표시",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Dynamisk oppsett",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Gallerioppsett",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Fokusert innhold",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Stort galleri",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "Kameraet er deaktivert. Du kan ikke lenger dele video.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Undertekster",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Talespråk",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Språk for undertekst",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Gallerialternativer",
248
250
  "peopleButtonLabel": "Personer",
249
251
  "selectedPeopleButtonLabel": "Personer-knappen er valgt",
250
252
  "peopleButtonTooltipOpen": "Vis deltakere",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Dynamische indeling",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Galerie-indeling",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Inhoud met prioriteit",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Grote galerie",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "Uw camera is uitgeschakeld. U kunt geen video meer delen.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Liveondertitels",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Gesproken taal",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Taal van ondertiteling",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Galerieopties",
248
250
  "peopleButtonLabel": "Personen",
249
251
  "selectedPeopleButtonLabel": "Knop Personen geselecteerd",
250
252
  "peopleButtonTooltipOpen": "Deelnemers weergeven",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Układ dynamiczny",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Układ galerii",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Zawartość priorytetowa",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Duża galeria",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "Kamera została wyłączona. Nie możesz już udostępniać wideo.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Napisy na żywo",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Język mówiony",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Język napisów",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Opcje galerii",
248
250
  "peopleButtonLabel": "Osoby",
249
251
  "selectedPeopleButtonLabel": "Wybrano przycisk Kontakty",
250
252
  "peopleButtonTooltipOpen": "Pokaż uczestników",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Layout dinâmico",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Layout da galeria",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Conteúdo focado",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Galeria Grande",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "Sua câmera foi desabilitada. Você não pode mais compartilhar vídeo.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Legendas ao Vivo",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Idioma falado",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Idioma da legenda",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Opções da galeria",
248
250
  "peopleButtonLabel": "Pessoas",
249
251
  "selectedPeopleButtonLabel": "Botão Pessoas Selecionado",
250
252
  "peopleButtonTooltipOpen": "Mostrar Participantes",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Динамический макет",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Макет коллекции",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Отсортированные материалы",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Большая галерея",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "Камера отключена. Вы больше не можете делиться видео.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Автоматические субтитры",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Язык речи",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Язык субтитров",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Параметры коллекции",
248
250
  "peopleButtonLabel": "Люди",
249
251
  "selectedPeopleButtonLabel": "Нажата кнопка \"Люди\"",
250
252
  "peopleButtonTooltipOpen": "Показать участников",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Dynamisk layout",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Gallerilayout",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Fokuserat innehåll",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Stort galleri",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "Kameran har inaktiverats. Du kan inte längre dela video.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Liveundertexter",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Talat språk",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Språk för undertext",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Gallerialternativ",
248
250
  "peopleButtonLabel": "Personer",
249
251
  "selectedPeopleButtonLabel": "Knappen Kontakter har valts",
250
252
  "peopleButtonTooltipOpen": "Visa deltagare",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "Dinamik düzen",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "Galeri düzeni",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "Odaklanmış içerik",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "Büyük Galeri",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "Kameranız devre dışı bırakıldı. Artık video paylaşasınız.",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "Açıklamalı canlı alt yazılar",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "Konuşulan dil",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "Açıklamalı alt yazı dili",
249
+ "moreDrawerGalleryOptionsMenuTitle": "Galeri seçenekleri",
248
250
  "peopleButtonLabel": "Kişiler",
249
251
  "selectedPeopleButtonLabel": "Kişiler Düğmesi Seçildi",
250
252
  "peopleButtonTooltipOpen": "Katılımcıları göster",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "动态布局",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "库布局",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "重点内容",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "大型画廊模式",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "你的照相机已禁用。你无法再共享视频。",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "实时辅助字幕",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "口述语言",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "字幕语言",
249
+ "moreDrawerGalleryOptionsMenuTitle": "库选项",
248
250
  "peopleButtonLabel": "人员",
249
251
  "selectedPeopleButtonLabel": "已选择“人员”按钮",
250
252
  "peopleButtonTooltipOpen": "显示参与者",
@@ -208,6 +208,7 @@
208
208
  "moreButtonGalleryFloatingLocalLayoutLabel": "動態版面配置",
209
209
  "moreButtonGalleryDefaultLayoutLabel": "資源庫配置",
210
210
  "moreButtonGalleryFocusedContentLayoutLabel": "焦點內容",
211
+ "moreButtonLargeGalleryDefaultLayoutLabel": "大型圖庫",
211
212
  "capabilityChangedNotification": {
212
213
  "turnVideoOn": {
213
214
  "lostDueToMeetingOption": "您的相機已停用。您無法再分享視訊。",
@@ -245,6 +246,7 @@
245
246
  "moreDrawerCaptionsMenuTitle": "即時字幕",
246
247
  "moreDrawerSpokenLanguageMenuTitle": "口語語言",
247
248
  "moreDrawerCaptionLanguageMenuTitle": "字幕語言",
249
+ "moreDrawerGalleryOptionsMenuTitle": "圖庫選項",
248
250
  "peopleButtonLabel": "人員",
249
251
  "selectedPeopleButtonLabel": "已選取人員按鈕",
250
252
  "peopleButtonTooltipOpen": "顯示參與者",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure/communication-react",
3
- "version": "1.8.1-alpha-202310060013",
3
+ "version": "1.8.1-alpha-202310070012",
4
4
  "sideEffects": false,
5
5
  "description": "React library for building modern communication user experiences utilizing Azure Communication Services",
6
6
  "keywords": [
@@ -98,13 +98,13 @@
98
98
  "@azure/core-auth": "^1.4.0",
99
99
  "@babel/cli": "^7.16.0",
100
100
  "@babel/core": "^7.16.0",
101
- "@internal/calling-component-bindings": "1.8.1-alpha-202310060013",
102
- "@internal/calling-stateful-client": "1.8.1-alpha-202310060013",
103
- "@internal/chat-component-bindings": "1.8.1-alpha-202310060013",
104
- "@internal/chat-stateful-client": "1.8.1-alpha-202310060013",
105
- "@internal/fake-backends": "1.8.1-alpha-202310060013",
106
- "@internal/react-components": "1.8.1-alpha-202310060013",
107
- "@internal/react-composites": "1.8.1-alpha-202310060013",
101
+ "@internal/calling-component-bindings": "1.8.1-alpha-202310070012",
102
+ "@internal/calling-stateful-client": "1.8.1-alpha-202310070012",
103
+ "@internal/chat-component-bindings": "1.8.1-alpha-202310070012",
104
+ "@internal/chat-stateful-client": "1.8.1-alpha-202310070012",
105
+ "@internal/fake-backends": "1.8.1-alpha-202310070012",
106
+ "@internal/react-components": "1.8.1-alpha-202310070012",
107
+ "@internal/react-composites": "1.8.1-alpha-202310070012",
108
108
  "@microsoft/api-documenter": "~7.12.11",
109
109
  "@microsoft/api-extractor": "~7.18.0",
110
110
  "@rollup/plugin-json": "^4.1.0",