agora-appbuilder-core 4.1.13-beta.2 → 4.1.13
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
|
@@ -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.13
|
|
81
|
-
CORE_VERSION: '4.1.13
|
|
80
|
+
CLI_VERSION: '3.1.13',
|
|
81
|
+
CORE_VERSION: '4.1.13',
|
|
82
82
|
DISABLE_LANDSCAPE_MODE: false,
|
|
83
83
|
STT_AUTO_START: false,
|
|
84
84
|
CLOUD_RECORDING_AUTO_START: false,
|
|
@@ -453,6 +453,8 @@ const CaptionProvider: React.FC<CaptionProviderProps> = ({
|
|
|
453
453
|
text1: startErrorLabel,
|
|
454
454
|
text2: result.error?.message || 'Unknown error occurred',
|
|
455
455
|
visibilityTime: 4000,
|
|
456
|
+
primaryBtn: null,
|
|
457
|
+
secondaryBtn: null,
|
|
456
458
|
});
|
|
457
459
|
}
|
|
458
460
|
setIsLangChangeInProgress(false);
|
|
@@ -468,6 +470,8 @@ const CaptionProvider: React.FC<CaptionProviderProps> = ({
|
|
|
468
470
|
text1: startErrorLabel,
|
|
469
471
|
text2: error?.message || 'Unknown error occurred',
|
|
470
472
|
visibilityTime: 4000,
|
|
473
|
+
primaryBtn: null,
|
|
474
|
+
secondaryBtn: null,
|
|
471
475
|
});
|
|
472
476
|
return {
|
|
473
477
|
success: false,
|
|
@@ -521,6 +525,8 @@ const CaptionProvider: React.FC<CaptionProviderProps> = ({
|
|
|
521
525
|
text1: updateErrorLabel,
|
|
522
526
|
text2: result.error?.message || 'Unknown error occurred',
|
|
523
527
|
visibilityTime: 4000,
|
|
528
|
+
primaryBtn: null,
|
|
529
|
+
secondaryBtn: null,
|
|
524
530
|
});
|
|
525
531
|
}
|
|
526
532
|
setIsLangChangeInProgress(false);
|
|
@@ -536,6 +542,8 @@ const CaptionProvider: React.FC<CaptionProviderProps> = ({
|
|
|
536
542
|
text1: updateErrorLabel,
|
|
537
543
|
text2: error?.message || 'Unknown error occurred',
|
|
538
544
|
visibilityTime: 4000,
|
|
545
|
+
primaryBtn: null,
|
|
546
|
+
secondaryBtn: null,
|
|
539
547
|
});
|
|
540
548
|
return {
|
|
541
549
|
success: false,
|
|
@@ -834,6 +842,8 @@ const CaptionProvider: React.FC<CaptionProviderProps> = ({
|
|
|
834
842
|
text1: heading('Set'),
|
|
835
843
|
text2: `Live transcription are automatically enabled for this meeting in "${spokenLangLabel}"`,
|
|
836
844
|
visibilityTime: 3000,
|
|
845
|
+
primaryBtn: null,
|
|
846
|
+
secondaryBtn: null,
|
|
837
847
|
});
|
|
838
848
|
} else {
|
|
839
849
|
Toast.show({
|
|
@@ -845,6 +855,8 @@ const CaptionProvider: React.FC<CaptionProviderProps> = ({
|
|
|
845
855
|
newLanguage: spokenLangLabel,
|
|
846
856
|
}),
|
|
847
857
|
visibilityTime: 3000,
|
|
858
|
+
primaryBtn: null,
|
|
859
|
+
secondaryBtn: null,
|
|
848
860
|
});
|
|
849
861
|
}
|
|
850
862
|
} else {
|
|
@@ -859,6 +871,8 @@ const CaptionProvider: React.FC<CaptionProviderProps> = ({
|
|
|
859
871
|
text1: heading('Set'),
|
|
860
872
|
text2: subheading(subheadingObj),
|
|
861
873
|
visibilityTime: 3000,
|
|
874
|
+
primaryBtn: null,
|
|
875
|
+
secondaryBtn: null,
|
|
862
876
|
});
|
|
863
877
|
}
|
|
864
878
|
|
|
@@ -912,6 +926,8 @@ const CaptionProvider: React.FC<CaptionProviderProps> = ({
|
|
|
912
926
|
// newConfig.source,
|
|
913
927
|
// )}`,
|
|
914
928
|
visibilityTime: 3000,
|
|
929
|
+
primaryBtn: null,
|
|
930
|
+
secondaryBtn: null,
|
|
915
931
|
});
|
|
916
932
|
}
|
|
917
933
|
if (isLocal) {
|