agora-appbuilder-core 4.0.0-beta.62 → 4.0.0-beta.64

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agora-appbuilder-core",
3
- "version": "4.0.0-beta.62",
3
+ "version": "4.0.0-beta.64",
4
4
  "description": "React Native template for RTE app builder",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -16,4 +16,11 @@ export type {
16
16
  NetworkQualities,
17
17
  I18nRequestConfirmation,
18
18
  I18nMuteConfirmation,
19
+ deviceDetectionToastSubHeadingDataInterface,
20
+ sttSpokenLanguageToastHeadingDataType,
21
+ whiteboardFileUploadToastDataType,
22
+ publicChatToastSubHeadingDataInterface,
23
+ privateChatToastHeadingDataInterface,
24
+ publicAndPrivateChatToastSubHeadingDataInterface,
19
25
  } from '../src/language/default-labels/videoCallScreenLabels';
26
+ export type {TextDataInterface} from '../src/language/default-labels';
@@ -807,6 +807,7 @@ export const VideoCallScreenLabels: I18nVideoCallScreenLabelsInterface = {
807
807
  active ? 'Hide Transcript' : 'Show Transcript',
808
808
 
809
809
  [toolbarItemRaiseHandText]: active => (active ? 'Lower Hand' : 'Raise Hand'),
810
+ [toolbarItemSwitchCameraText]: 'Switch Camera',
810
811
 
811
812
  [inviteTileWelcomeText]: 'Welcome',
812
813
  [inviteTileNoElseJoinedYetText]: 'No one else has joined yet',
@@ -45,7 +45,10 @@ import {useSetRoomInfo} from '../../components/room-info/useSetRoomInfo';
45
45
  import VBButton from '../../components/virtual-background/VBButton';
46
46
  import {useVB} from '../../components/virtual-background/useVB';
47
47
  import {useString} from '../../utils/useString';
48
- import {sttSpokenLanguageToastSubHeading} from '../../language/default-labels/videoCallScreenLabels';
48
+ import {
49
+ sttSpokenLanguageToastHeading,
50
+ sttSpokenLanguageToastSubHeading,
51
+ } from '../../language/default-labels/videoCallScreenLabels';
49
52
  //Icon for expanding Action Sheet
50
53
  interface ShowMoreIconProps {
51
54
  isExpanded: boolean;
@@ -296,9 +299,7 @@ const ToastIcon = ({color}) => (
296
299
  );
297
300
 
298
301
  const ActionSheetContent = props => {
299
- const heading = useString<'Set' | 'Changed'>(
300
- sttSpokenLanguageToastSubHeading,
301
- );
302
+ const heading = useString<'Set' | 'Changed'>(sttSpokenLanguageToastHeading);
302
303
  const subheading = useString<{
303
304
  action: 'Set' | 'Changed';
304
305
  newLanguage: string;