@abihealth/goapp-react-native 1.14.0 → 1.15.0
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.15.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.14.0...goapp-react-native-v1.15.0) (2025-03-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* removing reminder and permissions disclaimer ([#130](https://github.com/abiglobalhealth/react-native-sdk/issues/130)) ([b0a4692](https://github.com/abiglobalhealth/react-native-sdk/commit/b0a4692fcef2c72f4c2527555dcaaa185abe0b6d))
|
|
9
|
+
|
|
3
10
|
## [1.14.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.13.6...goapp-react-native-v1.14.0) (2025-03-06)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -167,7 +167,7 @@ var Reminder = function (_a) {
|
|
|
167
167
|
};
|
|
168
168
|
var onKeyboardChange = function (e) {
|
|
169
169
|
var _a;
|
|
170
|
-
var tabBarHeight =
|
|
170
|
+
var tabBarHeight = 32; // TODO remove hardcoded value when not in dev
|
|
171
171
|
if (platform_1.isIOS)
|
|
172
172
|
setKeyboardHeight(((_a = e === null || e === void 0 ? void 0 : e.endCoordinates) === null || _a === void 0 ? void 0 : _a.height) - tabBarHeight);
|
|
173
173
|
};
|
|
@@ -18,7 +18,7 @@ var PreparingSummaryScreen = function (_a) {
|
|
|
18
18
|
var t = (0, react_i18next_1.useTranslation)().t;
|
|
19
19
|
var theme = (0, useTheme_1.useTheme)();
|
|
20
20
|
var styles = getStyles(theme);
|
|
21
|
-
return (<ScreenWrapper_1.ScreenWrapper header={<Header_1.Header title={t('general.consultation.videoConsultation.title')} leftIcon={<VideoConsultationIcon_1.VideoConsultationIcon />}/>} containerStyle={styles.container}
|
|
21
|
+
return (<ScreenWrapper_1.ScreenWrapper header={<Header_1.Header title={t('general.consultation.videoConsultation.title')} leftIcon={<VideoConsultationIcon_1.VideoConsultationIcon />}/>} containerStyle={styles.container}>
|
|
22
22
|
<DoctorProfileCard_1.DoctorProfileCard professional={professional} description={t('consultation.summary_being_prepared')}/>
|
|
23
23
|
|
|
24
24
|
<Text_1.Text center>{t('general.consultation.videoConsultation.hcpCanRecall')}</Text_1.Text>
|
|
@@ -67,20 +67,6 @@ var JoinVideoCallScreen = function (_a) {
|
|
|
67
67
|
{t('video.calling.button')}
|
|
68
68
|
</index_1.Button>)}
|
|
69
69
|
|
|
70
|
-
<react_native_1.View style={[styles.disclaimerCard]}>
|
|
71
|
-
<index_1.InfoIcon />
|
|
72
|
-
|
|
73
|
-
<react_native_1.View style={styles.disclaimerInnerContainer}>
|
|
74
|
-
<index_1.Text>{t('video.camera_and_microphone_access')}</index_1.Text>
|
|
75
|
-
|
|
76
|
-
<react_native_1.TouchableOpacity activeOpacity={0.6}>
|
|
77
|
-
<index_1.Text color={theme.palette.highlight} bold>
|
|
78
|
-
{t('video.camera_and_microphone_access.highlight')}
|
|
79
|
-
</index_1.Text>
|
|
80
|
-
</react_native_1.TouchableOpacity>
|
|
81
|
-
</react_native_1.View>
|
|
82
|
-
</react_native_1.View>
|
|
83
|
-
|
|
84
70
|
<index_1.Text center>{t('video.calling.not_refresh')}</index_1.Text>
|
|
85
71
|
</index_1.ScreenWrapper>);
|
|
86
72
|
};
|