@abihealth/goapp-react-native 1.18.0 → 1.18.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.18.1](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.18.0...goapp-react-native-v1.18.1) (2025-03-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* undefined processing prescription screen in custom components ([#146](https://github.com/abiglobalhealth/react-native-sdk/issues/146)) ([9d9a6f4](https://github.com/abiglobalhealth/react-native-sdk/commit/9d9a6f44d37581bdbc1883ff55a93a4fda4f7a93))
|
|
9
|
+
|
|
3
10
|
## [1.18.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.17.0...goapp-react-native-v1.18.0) (2025-03-19)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -15,16 +15,17 @@ var VideoConsultationIcon_1 = require("../icons/VideoConsultationIcon");
|
|
|
15
15
|
var react_1 = __importDefault(require("react"));
|
|
16
16
|
var react_native_1 = require("react-native");
|
|
17
17
|
var ProcessingPrescriptionScreen = function () {
|
|
18
|
+
var _a;
|
|
18
19
|
var t = (0, useTranslation_1.useTranslation)().t;
|
|
19
20
|
var theme = (0, useTheme_1.useTheme)();
|
|
20
21
|
var styles = getStyles(theme);
|
|
21
|
-
var
|
|
22
|
+
var screens = (0, useCustomComponents_1.useCustomComponents)().screens;
|
|
22
23
|
return (<ScreenWrapper_1.ScreenWrapper header={<Header_1.Header title={t('general.consultation.videoConsultation.title')} leftIcon={<VideoConsultationIcon_1.VideoConsultationIcon />}/>} containerStyle={styles.container}>
|
|
23
24
|
<Text_1.Text center variant="h1">
|
|
24
25
|
{t('delivery.address.processing')}
|
|
25
26
|
</Text_1.Text>
|
|
26
27
|
|
|
27
|
-
{(
|
|
28
|
+
{((_a = screens === null || screens === void 0 ? void 0 : screens.ProcessingPrescriptionScreen) === null || _a === void 0 ? void 0 : _a.LoadingAnimation) || <LoadingCircleAnimation_1.LoadingCircleAnimation />}
|
|
28
29
|
|
|
29
30
|
<Text_1.Text center>{t('download.one_minute')}</Text_1.Text>
|
|
30
31
|
</ScreenWrapper_1.ScreenWrapper>);
|