agora-appbuilder-core 4.1.7 → 4.1.8-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 (41) hide show
  1. package/package.json +2 -2
  2. package/template/_package-lock.json +30671 -5376
  3. package/template/agora-rn-uikit/src/Contexts/PropsContext.tsx +1 -1
  4. package/template/agora-rn-uikit/src/Rtc/Join.tsx +18 -9
  5. package/template/bridge/rtc/webNg/RtcEngine.ts +2 -2
  6. package/template/defaultConfig.js +4 -3
  7. package/template/esbuild.rsdk.go +1 -2
  8. package/template/global.d.ts +1 -0
  9. package/template/package.json +1 -2
  10. package/template/src/AppWrapper.tsx +30 -35
  11. package/template/src/auth/AuthProvider.tsx +28 -35
  12. package/template/src/auth/IDPAuth.tsx +1 -14
  13. package/template/src/components/Controls.tsx +47 -15
  14. package/template/src/components/common/GenericModal.tsx +143 -0
  15. package/template/src/components/common/GenericPopup.tsx +151 -0
  16. package/template/src/components/common/data-table.tsx +412 -0
  17. package/template/src/components/controls/useControlPermissionMatrix.tsx +9 -7
  18. package/template/src/components/precall/usePreCall.tsx +1 -2
  19. package/template/src/components/recordings/RecordingItemRow.tsx +289 -0
  20. package/template/src/components/recordings/RecordingsDateTable.tsx +99 -25
  21. package/template/src/components/recordings/TextTrackItemRow.tsx +120 -0
  22. package/template/src/components/room-info/useRoomInfo.tsx +1 -0
  23. package/template/src/components/text-tracks/TextTracksTable.tsx +306 -0
  24. package/template/src/components/text-tracks/ViewTextTracksModal.tsx +44 -0
  25. package/template/src/components/text-tracks/useFetchSTTTranscript.tsx +262 -0
  26. package/template/src/components/useUserPreference.tsx +0 -11
  27. package/template/src/language/default-labels/videoCallScreenLabels.ts +7 -0
  28. package/template/src/logger/AppBuilderLogger.tsx +1 -0
  29. package/template/src/pages/Create.tsx +2 -2
  30. package/template/src/pages/VideoCall.tsx +1 -6
  31. package/template/src/subComponents/LogoutButton.tsx +1 -11
  32. package/template/src/subComponents/recording/useRecording.tsx +19 -4
  33. package/template/src/subComponents/recording/useRecordingLayoutQuery.tsx +83 -78
  34. package/template/src/utils/common.tsx +79 -1
  35. package/template/src/utils/useCreateRoom.ts +94 -112
  36. package/template/src/utils/useEndCall.ts +16 -3
  37. package/template/src/utils/useGetMeetingPhrase.ts +67 -76
  38. package/template/src/utils/useJoinRoom.ts +5 -4
  39. package/template/src/utils/useMutePSTN.ts +47 -45
  40. package/template/webpack.rsdk.config.js +1 -2
  41. package/template/src/components/GraphQLProvider.tsx +0 -122
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agora-appbuilder-core",
3
- "version": "4.1.7",
3
+ "version": "4.1.8-1",
4
4
  "description": "React Native template for RTE app builder",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -9,7 +9,7 @@
9
9
  ],
10
10
  "scripts": {
11
11
  "vercel-build": "npm run dev-setup && cd template && npm run web:build && cd .. && npm run copy-vercel",
12
- "uikit": "rm -rf template/agora-rn-uikit && git clone https://github.com/AgoraIO-Community/appbuilder-ui-kit.git template/agora-rn-uikit && cd template/agora-rn-uikit && git checkout appbuilder-uikit-3.1.4",
12
+ "uikit": "rm -rf template/agora-rn-uikit && git clone https://github.com/AgoraIO-Community/appbuilder-ui-kit.git template/agora-rn-uikit && cd template/agora-rn-uikit && git checkout appbuilder-uikit-3.1.8",
13
13
  "deps": "cd template && npm i --force",
14
14
  "dev-setup": "npm run uikit && npm run deps && node devSetup.js",
15
15
  "web-build": "cd template && npm run web:build && cd .. && npm run copy-vercel",