@abihealth/goapp-react-native 1.34.0 → 1.35.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 +7 -0
- package/README.md +9 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.35.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.34.0...goapp-react-native-v1.35.0) (2025-06-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update district options for improved clarity and consistency ([#212](https://github.com/abiglobalhealth/react-native-sdk/issues/212)) ([a66926c](https://github.com/abiglobalhealth/react-native-sdk/commit/a66926c7cae9e40704f51d5b4c9b6cb416a6e186))
|
|
9
|
+
|
|
3
10
|
## [1.34.0](https://github.com/abiglobalhealth/react-native-sdk/compare/goapp-react-native-v1.33.0...goapp-react-native-v1.34.0) (2025-06-11)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -248,24 +248,24 @@ export default ConsultationScreen
|
|
|
248
248
|
building?: string
|
|
249
249
|
street?: string
|
|
250
250
|
district?:
|
|
251
|
-
| '
|
|
251
|
+
| 'central'
|
|
252
252
|
| 'eastern'
|
|
253
253
|
| 'southern'
|
|
254
254
|
| 'wan_chai'
|
|
255
|
-
| '
|
|
256
|
-
| '
|
|
255
|
+
| 'city'
|
|
256
|
+
| 'kwun_tong'
|
|
257
257
|
| 'sham_shui_po'
|
|
258
258
|
| 'wong_tai_sin'
|
|
259
|
-
| '
|
|
259
|
+
| 'yau_tsim_mong'
|
|
260
|
+
| 'islands'
|
|
260
261
|
| 'kwai_tsing'
|
|
262
|
+
| 'north'
|
|
263
|
+
| 'sai_kung'
|
|
264
|
+
| 'sha_tin'
|
|
265
|
+
| 'tai_po'
|
|
261
266
|
| 'tsuen_wan'
|
|
262
267
|
| 'tuen_mun'
|
|
263
268
|
| 'yuen_long'
|
|
264
|
-
| 'north'
|
|
265
|
-
| 'tai_po'
|
|
266
|
-
| 'sha_tin'
|
|
267
|
-
| 'sai_kung'
|
|
268
|
-
| 'islands'
|
|
269
269
|
}
|
|
270
270
|
```
|
|
271
271
|
|