agora-appbuilder-core 4.1.12 → 4.1.13-1

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/package.json +1 -1
  2. package/template/defaultConfig.js +2 -2
  3. package/template/src/assets/font-styles.css +4 -0
  4. package/template/src/assets/fonts/icomoon.ttf +0 -0
  5. package/template/src/assets/selection.json +1 -1
  6. package/template/src/atoms/ActionMenu.tsx +1 -1
  7. package/template/src/atoms/CustomIcon.tsx +1 -0
  8. package/template/src/atoms/Popup.tsx +1 -1
  9. package/template/src/components/Controls.tsx +21 -32
  10. package/template/src/language/default-labels/videoCallScreenLabels.ts +9 -9
  11. package/template/src/pages/VideoCall.tsx +2 -1
  12. package/template/src/pages/video-call/ActionSheetContent.tsx +0 -7
  13. package/template/src/pages/video-call/SidePanelHeader.tsx +80 -63
  14. package/template/src/rtm-events/constants.ts +9 -0
  15. package/template/src/subComponents/caption/Caption.tsx +4 -20
  16. package/template/src/subComponents/caption/CaptionContainer.tsx +262 -250
  17. package/template/src/subComponents/caption/CaptionIcon.tsx +6 -4
  18. package/template/src/subComponents/caption/CaptionText.tsx +26 -20
  19. package/template/src/subComponents/caption/LanguageSelectorPopup.tsx +30 -142
  20. package/template/src/subComponents/caption/Transcript.tsx +77 -32
  21. package/template/src/subComponents/caption/TranscriptIcon.tsx +7 -6
  22. package/template/src/subComponents/caption/TranslateActionMenu.tsx +128 -0
  23. package/template/src/subComponents/caption/useCaption.tsx +666 -480
  24. package/template/src/subComponents/caption/useSTTAPI.tsx +25 -4
  25. package/template/src/subComponents/caption/useStreamMessageUtils.native.ts +1 -1
  26. package/template/src/subComponents/caption/useStreamMessageUtils.ts +1 -1
  27. package/template/src/subComponents/caption/utils.ts +48 -40
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agora-appbuilder-core",
3
- "version": "4.1.12",
3
+ "version": "4.1.13-1",
4
4
  "description": "React Native template for RTE app builder",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -77,8 +77,8 @@ const DefaultConfig = {
77
77
  CHAT_ORG_NAME: '',
78
78
  CHAT_APP_NAME: '',
79
79
  CHAT_URL: '',
80
- CLI_VERSION: '3.1.11',
81
- CORE_VERSION: '4.1.11',
80
+ CLI_VERSION: '3.1.13-1',
81
+ CORE_VERSION: '4.1.13-1',
82
82
  DISABLE_LANDSCAPE_MODE: false,
83
83
  STT_AUTO_START: false,
84
84
  CLOUD_RECORDING_AUTO_START: false,
@@ -24,6 +24,10 @@
24
24
  -moz-osx-font-smoothing: grayscale;
25
25
  }
26
26
 
27
+ .icon-arrow-right:before {
28
+ content: '\e9a5';
29
+ color: #fff;
30
+ }
27
31
  .icon-lang-translate:before {
28
32
  content: '\e9a4';
29
33
  color: #fff;