@trtc/calls-uikit-react 4.4.3-beta.2 → 4.4.4

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 (75) hide show
  1. package/package.json +4 -3
  2. package/src/Components/assets/aiAssistant/desktop/subtitleSettings.svg +4 -0
  3. package/src/Components/assets/aiAssistant/mobile/close-aiAssistant.svg +7 -0
  4. package/src/Components/assets/aiAssistant/mobile/open-aiAssistant.svg +7 -0
  5. package/src/Components/assets/aiAssistant/mobile/subtitleSettings.svg +3 -0
  6. package/src/Components/components/base/CustomSelect/CustomSelect.scss +116 -0
  7. package/src/Components/components/base/CustomSelect/CustomSelect.tsx +96 -0
  8. package/src/Components/components/common/AIAssistant/AISubtitle.scss +109 -0
  9. package/src/Components/components/common/AIAssistant/AISubtitle.tsx +52 -66
  10. package/src/Components/components/common/AIAssistant/components/AITranscriberSwitchH5.tsx +39 -0
  11. package/src/Components/components/common/AIAssistant/components/AITranscriberSwitchPC.scss +46 -0
  12. package/src/Components/components/common/AIAssistant/components/AITranscriberSwitchPC.tsx +42 -0
  13. package/src/Components/components/common/AIAssistant/components/SubtitleContent.scss +67 -0
  14. package/src/Components/components/common/AIAssistant/components/SubtitleContent.tsx +134 -0
  15. package/src/Components/components/common/AIAssistant/components/SubtitleSettingsH5.scss +275 -0
  16. package/src/Components/components/common/AIAssistant/components/SubtitleSettingsH5.tsx +265 -0
  17. package/src/Components/components/common/AIAssistant/components/SubtitleSettingsPC.scss +98 -0
  18. package/src/Components/components/common/AIAssistant/components/SubtitleSettingsPC.tsx +198 -0
  19. package/src/Components/components/common/AIAssistant/components/index.ts +5 -0
  20. package/src/Components/components/common/AIAssistant/index.ts +3 -1
  21. package/src/Components/components/common/TopBar/h5/TopBarH5.tsx +11 -1
  22. package/src/Components/components/common/TopBar/pc/TopBarPC.module.scss +20 -0
  23. package/src/Components/components/common/TopBar/pc/TopBarPC.tsx +14 -9
  24. package/src/Components/components/common/UIKitModal/UIKitModal.tsx +250 -0
  25. package/src/Components/components/common/UIKitModal/UIKitModalState.ts +177 -0
  26. package/src/Components/components/common/UIKitModal/index.module.scss +176 -0
  27. package/src/Components/components/common/UIKitModal/index.ts +3 -0
  28. package/src/Components/hooks/index.ts +2 -0
  29. package/src/Components/hooks/useAIAssistant.ts +174 -0
  30. package/src/TUICallService/CallService/AIAssistant.ts +285 -39
  31. package/src/TUICallService/CallService/UIKitModal.ts +72 -6
  32. package/src/TUICallService/CallService/bellContext.ts +25 -2
  33. package/src/TUICallService/CallService/engineEventHandler.ts +6 -1
  34. package/src/TUICallService/CallService/index.ts +72 -39
  35. package/src/TUICallService/CallService/miniProgram.ts +0 -12
  36. package/src/TUICallService/TUIStore/callStore.ts +6 -1
  37. package/src/TUICallService/UIKitModal/UIKitModal.ts +117 -0
  38. package/src/TUICallService/UIKitModal/index.ts +2 -0
  39. package/src/TUICallService/UIKitModal/type.ts +15 -0
  40. package/src/TUICallService/const/index.ts +4 -0
  41. package/src/TUICallService/interface/ICallStore.ts +5 -0
  42. package/src/TUICallService/locales/en.ts +17 -1
  43. package/src/TUICallService/locales/ja_JP.ts +17 -1
  44. package/src/TUICallService/locales/zh-cn.ts +17 -1
  45. package/src/TUICallService/utils/common-utils.ts +1 -1
  46. package/src/index.ts +1 -1
  47. package/tuicall-uikit-react.es.js +4009 -3940
  48. package/tuicall-uikit-react.umd.js +8 -33
  49. package/types/Components/components/base/CustomSelect/CustomSelect.d.ts +15 -0
  50. package/types/Components/components/common/AIAssistant/AISubtitle.d.ts +1 -0
  51. package/types/Components/components/common/AIAssistant/components/AITranscriberSwitchH5.d.ts +3 -0
  52. package/types/Components/components/common/AIAssistant/components/AITranscriberSwitchPC.d.ts +4 -0
  53. package/types/Components/components/common/AIAssistant/components/SubtitleContent.d.ts +8 -0
  54. package/types/Components/components/common/AIAssistant/components/SubtitleSettingsH5.d.ts +13 -0
  55. package/types/Components/components/common/AIAssistant/components/SubtitleSettingsPC.d.ts +13 -0
  56. package/types/Components/components/common/AIAssistant/components/index.d.ts +5 -0
  57. package/types/Components/components/common/AIAssistant/index.d.ts +1 -0
  58. package/types/Components/components/common/UIKitModal/UIKitModal.d.ts +21 -0
  59. package/types/Components/components/common/UIKitModal/UIKitModalState.d.ts +27 -0
  60. package/types/Components/components/common/UIKitModal/index.d.ts +3 -0
  61. package/types/Components/hooks/index.d.ts +2 -1
  62. package/types/Components/hooks/useAIAssistant.d.ts +22 -0
  63. package/types/TUICallService/CallService/AIAssistant.d.ts +72 -15
  64. package/types/TUICallService/CallService/bellContext.d.ts +3 -0
  65. package/types/TUICallService/CallService/index.d.ts +4 -3
  66. package/types/TUICallService/CallService/miniProgram.d.ts +0 -1
  67. package/types/TUICallService/UIKitModal/UIKitModal.d.ts +4 -0
  68. package/types/TUICallService/UIKitModal/index.d.ts +2 -0
  69. package/types/TUICallService/UIKitModal/type.d.ts +13 -0
  70. package/types/TUICallService/interface/ICallStore.d.ts +4 -0
  71. package/types/TUICallService/locales/en.d.ts +15 -0
  72. package/types/TUICallService/locales/ja_JP.d.ts +15 -0
  73. package/types/TUICallService/locales/zh-cn.d.ts +15 -0
  74. package/src/TUICallService/utils/validate/validateStatus.ts +0 -26
  75. package/types/TUICallService/utils/validate/validateStatus.d.ts +0 -5

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.