-
Notifications
You must be signed in to change notification settings - Fork 256
/
Copy pathq
15365 lines (9415 loc) · 496 KB
/
q
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[33mcommit 9b222a4d4bb20a540fc3481286b67a2e6cc72777[m[33m ([m[1;36mHEAD -> [m[1;32mmain[m[33m)[m
Author: Usama Idriss Kakumba <[email protected]>
Date: Wed Feb 21 17:41:28 2024 +0300
refactor: create preview url from image base64 on attachments
[33mcommit 8c1324a40f28bf6d0b3c62b8567fab761259fc83[m
Author: Usama Idriss Kakumba <[email protected]>
Date: Thu Feb 15 12:58:17 2024 +0300
refactor: add respective error snackbars on order saving failed
[33mcommit f9d9db4ebca9fcbfc496d69aa02785ab809601e7[m[33m ([m[1;31mupstream/main[m[33m)[m
Author: Vineet Sharma <[email protected]>
Date: Wed Feb 21 12:46:49 2024 +0530
(feat) O3-2760: Present workspaces should leverage the `promptBeforeClosing` function (#1613)
* Updated the workspaces.ts to accomodate proper checks when closing workspaces
* Allergies workspace registered correctly with register workspace
* Fixed the closing workspace prompt
* Added the promptBeforeClosing in the Appointments form
* Added the isDirty check in allergies form
* Removed extra translations
* Added the isDirty check in conditions workspace
* Added the isDirty check in start-visit workspace
* Updated the workspaces implementation in the forms app
* Updated the workspace title and implementation in the immunization app
* Updated the workspace title and workspace implementation in the patient lists
* Updated the workspace title and workspace implementation in the medications app
* Updated the workspace title and workspace implementation in the note app
* Updated the workspace title and workspace implementation in the orders app
* Updated the workspace title and workspace implementation in the programs app
* Updated the workspace title and workspace implementation in the vitals app
* Added JSDoc in the workspaces.ts
* Removed duplicate functions from workspaces.ts
* Exported getWhetherWorkspaceCanBeClosed from common-lib
* Updated workspaces.ts with JS Doc
* Updated and fixed failing tests
* Fixed TS errors
* Updated keys and values of translations
* Final changes
* Updated translations
* Updated tests with text
* Switching between order workspaces should not prompt the users to close order basket
* Updated translations
* Updated `ignoreChanges` description
Co-authored-by: Brandon Istenes <[email protected]>
* Review changes
* Introduced new function 'discardChangesAndCloseWorkspace' to close workspaces and keeping the closeWorkspace default behaviour intact
* Updated text
Co-authored-by: Dennis Kigen <[email protected]>
* Reverted the implementation of discardChangesAndCloseWorkspace
* Prompt function should be removed if the workspace is closed
* Fixed failing test
* Fixed TS issues
* Review changes
* Removed appointments workspace
* Updated translation
---------
Co-authored-by: Brandon Istenes <[email protected]>
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit 059c36f13f7ea1b2be9664dba86881cd717bbec1[m
Author: Brandon Istenes <[email protected]>
Date: Tue Feb 20 17:09:15 2024 -0500
BREAKING: O3-2620 Connect Lab Orders to Orderable ConvSet (#1676)
* O3-2620 Connect Lab Orders to Orderable ConvSet
* Clean up
* Fixup
---------
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit eb32c3e85693f3f0d8ca8bf792b2a8b532860bdb[m
Author: Mark Goodrich <[email protected]>
Date: Tue Feb 20 16:03:19 2024 -0500
(feat) O3-2859: Change Patient Appointments to use shared appointments form (#1674)
---------
Co-authored-by: CynthiaKamau <[email protected]>
[33mcommit 5769fa0af4e0d9caa67d226b30f6728076c8601e[m
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue Feb 20 22:38:18 2024 +0300
Bump ip from 1.1.8 to 1.1.9 (#1682)
Bumps [ip](https://github.com/indutny/node-ip) from 1.1.8 to 1.1.9.
- [Commits](https://github.com/indutny/node-ip/compare/v1.1.8...v1.1.9)
---
updated-dependencies:
- dependency-name: ip
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit d105a5ae0a27922ef17f6e204eebaf2b7cb2e965[m
Author: jwnasambu <[email protected]>
Date: Tue Feb 20 22:06:50 2024 +0300
(fix) O3-2877: Make the drug search debounce delay value configurable (#1680)
Co-authored-by: jwnasambu <wamalwa1844.com>
[33mcommit 41b890ebc2e3a65eb247623d6e89b3600a013e92[m
Author: Ian <[email protected]>
Date: Tue Feb 20 13:40:50 2024 -0500
(chore) Update tx-pull.yml
[33mcommit a0cecd6b8f7b87d3da2c42d316226d29ec0bebeb[m
Author: befantasy <[email protected]>
Date: Wed Feb 21 02:23:21 2024 +0800
(chore) Update translations from Transifex (#1615)
Co-authored-by: OpenMRS Bot <[email protected]>
Co-authored-by: Ian <[email protected]>
[33mcommit a460e8e246ddafa23034231367aa46c5e6db734d[m
Author: Dennis Kigen <[email protected]>
Date: Tue Feb 20 16:34:17 2024 +0300
(chore) Remove timing env from lint script in all packages (#1679)
* (chore) Remove timing env from lint script in all packages
* Update lint script in patient-lists package
* Update patient-flags package
[33mcommit 56e5362d3f3e5c61a9e5f85bea578aa6d0a00c34[m
Author: CynthiaKamau <[email protected]>
Date: Tue Feb 20 09:56:29 2024 +0300
(feat) Add mode prop to React Form Engine component to handle different views (#1678)
(feat) Add mode prop to OHRI for component to handle different views
[33mcommit d2ea508842a1976e67952e6587d66ea2e794216c[m
Author: Pedro Sousa - ICRC <[email protected]>
Date: Mon Feb 19 16:33:59 2024 +0000
(chore) Added French translations for "Next" and "Previous" on form entry app (#1677)
Added French translations for "Next" and "Previous" on form entry app
[33mcommit 4dabd3c2417c9d0d2b54ca7e3784bd71f305385a[m
Author: Vineet Sharma <[email protected]>
Date: Mon Feb 19 17:06:25 2024 +0530
(fix) Workspace buttons should not be anchored at the end of the screen (#1666)
* Reverting the CSS changes in individual workspaces
* Workspace window should have height extending to full screen
* Fixed identation in the drug order form
[33mcommit b1d72207dc0f673be0a79daf148332dc27b65d19[m
Author: Dennis Kigen <[email protected]>
Date: Sun Feb 18 07:06:41 2024 +0300
(chore) Remove duplicated SWR config (#1675)
[33mcommit 8be52b2cbd722b5b8c946e4eda5d8322ff88f0a8[m
Author: Makombe Kennedy <[email protected]>
Date: Fri Feb 16 13:49:53 2024 +0300
(feat) The lab order form should have a reason for ordering field (#1458)
* (feat): Lab form should have "reason for ordering
* Code review changes
* More fixes
* code review changes
* Code review changes and conflix fixes
* More review changes
* Remove concept label from config
[33mcommit 83542a7ca91f7a9913d72273161a7832eab513e7[m
Author: elimm <[email protected]>
Date: Thu Feb 15 22:34:40 2024 +0200
(fix) O3-2870: Add Hebrew translation for prev & next form nav buttons (#1668)
Co-authored-by: Andrey Y <[email protected]>
[33mcommit 431b4e7e21ce33a53fbef6209b73ecaec418fc35[m
Author: Jayasanka Weerasinghe <[email protected]>
Date: Fri Feb 16 00:17:09 2024 +0530
(chore) Upgrade peer-dependancy versions of single-spa and single-spa-react (#1669)
[33mcommit 1d74c021f27d61185b2ffe74ace6d7099330a92e[m
Author: Jayasanka Weerasinghe <[email protected]>
Date: Wed Feb 14 23:43:48 2024 +0530
(test) Enhance "Start Visit" E2E Test (#1663)
* Delete the patient after the Start Visit E2E test
* Update steps
[33mcommit 4a9a90edf7500ba2d1e0ccee7d218425114bcec3[m
Author: Brandon Istenes <[email protected]>
Date: Tue Feb 13 13:51:43 2024 -0500
(chore) Remove outdated comment (#1660)
[33mcommit e52c2e74ff9a3924941acf91252dfd892a72e8bf[m
Author: SENTHIL ATHIBAN M <[email protected]>
Date: Tue Feb 13 16:37:26 2024 +0530
(fix) O3-2832 : Implemented validation check for Primary Diagnosis and Secondary Diagnosis in visit-note (#1647)
* fix(visit-note) : Implemented validation check for diagnosis input
* refactor(visit-note) : Refactor diagnosis selection logic in VisitNotesForm component
[33mcommit a659a8e355140a45b25f893cb4bfbe1f655941cd[m
Author: McCarthy <[email protected]>
Date: Tue Feb 13 14:07:02 2024 +0300
(fix) O3-2807: Quantity Units should be required when a quantity to dispense is specified (#1636)
* (fix) dispensing units in drug-order-form default to dosage units with user still able to change the dispensing units
* changes in dosage unit only trigger changes in the dispensing unit when the quantity to dispense is greater than 0
* the dispensing units default to the dosing units when the dispensing quantity is greater than 0
* Quantity units should be same as dosing units by default
* Fixed the Form Provider path
* Removed Form Provider
* Quantity unit is required field
* Better error handling for quantity units
* if the default value of the quantity units is not specified, then it defaults to the dose unit
* if the quantity unit is not specified, manually setting the dose unit defaults the quantity unit to the selected dose unit
* quantity unit is required only when the quantity to dispense is specified
* Update packages/esm-patient-medications-app/src/add-drug-order/drug-order-form.component.tsx
* Final changes
* removed the methods variable
* Replaced watch() with getValues() where necessary
and wrapped handlers in a useCallback()
* Quantity untis should be translated
---------
Co-authored-by: Vineet Sharma <[email protected]>
[33mcommit 4563c5f9df72a30d21331b4e5e94ab644f34b87d[m
Author: Vineet Sharma <[email protected]>
Date: Tue Feb 13 16:03:38 2024 +0530
(feat) O3-2779: Error messages in drug order form should be translated (#1652)
* O3-2779: Error messages in drug order form should be translated
* Updated translation
Co-authored-by: Dennis Kigen <[email protected]>
* Revert "Updated translation"
This reverts commit d11523eb89d4b8672bbe8c34baa432cb7ef94a64.
---------
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit 9cfea2fdb547957245812e94f402dc346c26b7da[m
Author: Pradip Ram <[email protected]>
Date: Tue Feb 13 10:46:04 2024 +0530
fix: Allowing image upload from computer (#1654)
[33mcommit 9c9ece813af964fcf1b7df5a5310d66c88050469[m
Author: Makombe Kennedy <[email protected]>
Date: Tue Feb 13 01:17:20 2024 +0300
(fix) Fix medications not loading when quantity unit property is null (#1656)
(fix):Fix error medication not loading when quantity unit is null
[33mcommit 7d4d00706bf58f08c8228fa0a9cc36ae5edd05ce[m
Author: Jabar Jeremy <[email protected]>
Date: Mon Feb 12 17:14:00 2024 +0300
(chore) Bump react form engine version (#1655)
* bump version
* Bump FE
[33mcommit b9046f1eb7b210010555204adc425e3ad9a4cd19[m
Author: Usama Idriss Kakumba <[email protected]>
Date: Sat Feb 10 00:05:21 2024 +0300
(feat) O3-2814: Add field validation to the lab order form (#1649)
* refactor: add validations on laborderform
* add controlled fields
* refactor: and error messages
* fix: fix tests
* fix: add lab refrence to be required
* add field validations
* use enableCounter on additional instructions text area
* remove invalid_type_error on urgency field schema
* remove counterMode on instructions textarea
* fix double border on combo box when field is invalid
* Tweak form CSS and error notification placement
---------
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit 28c70a1088f13c150c7e4062d78835057f99a486[m
Author: Vijay Kv <[email protected]>
Date: Fri Feb 9 23:32:23 2024 +0530
(fix) O3-2735: Display units for patient age in header (#1638)
[33mcommit c28cf516f70d2ba2d608aef83a5fa52ad30a2a9d[m
Author: Jayasanka Weerasinghe <[email protected]>
Date: Fri Feb 9 13:50:22 2024 +0530
(chore) Release v7.0.1 (#1651)
[33mcommit 7222e818a1c158497a27f66965c059167f9cc309[m
Author: Vineet Sharma <[email protected]>
Date: Fri Feb 9 13:10:08 2024 +0530
(fix) Saving the medication should not send the dateActivated in the payload (#1635)
Saving the medication should not send the dateActivated in the payload
[33mcommit a92f13b13c7ed055870e50f4c1705df2b5ace6d9[m
Author: Usama Idriss Kakumba <[email protected]>
Date: Fri Feb 9 10:19:47 2024 +0300
(fix) O3-2826: Fix reading properties of null (reading 'deceasedDateTime') when navigating to the patient chart. (#1646)
fix: fix reading from null
[33mcommit 10939bc95288b03fdca761934d627fe731673357[m
Author: Donald Kibet <[email protected]>
Date: Fri Feb 9 08:15:59 2024 +0300
(feat) Anchor workspace actions to the bottom of the screen in tablet mode (#1650)
[33mcommit e2f58d690496c67a90f435b89da4da445776391e[m
Author: Dennis Kigen <[email protected]>
Date: Fri Feb 9 00:38:34 2024 +0300
(docs) Update links to docs in README.md
[33mcommit eb31b814b5d6eb4326b6f7772a967eadfac00505[m
Author: Dennis Kigen <[email protected]>
Date: Fri Feb 9 00:35:16 2024 +0300
(fix) Fix display of menu items in the side rail and bottom nav (#1648)
[33mcommit bf1337359314b868bf42935be6a4fb0545d0a180[m
Author: Dennis Kigen <[email protected]>
Date: Thu Feb 8 21:46:28 2024 +0300
(fix) Anchor allergy form action buttons to page bottom (#1644)
[33mcommit 1c19f0c83b5a876a3c27a9b1e9794b72eabe808e[m
Author: Jayasanka Weerasinghe <[email protected]>
Date: Thu Feb 8 17:32:28 2024 +0530
(chore) Release v7.0.0 (#1639)
[33mcommit 1686f45846310f7cdd7881f96a6747b7c632d4d8[m
Author: Dennis Kigen <[email protected]>
Date: Thu Feb 8 11:52:37 2024 +0300
(feat) Add infinite loading to the visits summary page (#1643)
[33mcommit 9cf2032d3b0f9f0bca45a556d7481458420e7703[m
Author: Dennis Kigen <[email protected]>
Date: Wed Feb 7 23:58:24 2024 +0300
(fix) Fix label rendering bug in Contact details component (#1641)
[33mcommit e89b914e3055def374087252329063a8052c64f5[m
Author: Jose Francisco <[email protected]>
Date: Wed Feb 7 17:42:30 2024 +0000
(feat) Bump rxjs to version 7 (#1642)
[33mcommit daf1f03d87b0f0331c66fc2d79d408df5ea4989e[m[33m ([m[1;32mfix-reading-from-null-on-patient-cahrt[m[33m)[m
Author: Magembe Sharif <[email protected]>
Date: Tue Feb 6 02:35:50 2024 -0800
O3-2720: Visit stop time input not working in edit mode (#1621)
* 03-2720:Visit stop time input not working in edit mode
* Update the commit
* remove redudant new date()
* fix
* update commit
[33mcommit 6a3d787375c97d4e1acade8cc17d2afe07c9557c[m
Author: Vijay Kv <[email protected]>
Date: Sat Feb 3 22:30:33 2024 +0530
(fix) O3-2658: Show attachment descriptions when available (#1626)
* (fix) 03-2658 Attachment description fixed When Viewing Images
* fixed the changes
* Minor fixup
* Show attachment description as well as fix up some more things
* Fixup
* Remove helper text about supported file types
* Remove alignment from gallery container
* Clean up most other things
---------
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit b9192c1805bf4d2c5e223f7fa9eae16d96b74807[m
Author: Usama Idriss Kakumba <[email protected]>
Date: Fri Feb 2 15:42:45 2024 +0300
(feat) O3-2716: Prompt users to close workspaces when navigating from the patient chart (#1607)
* feat: add prompt notification on navigating from patient chart when workspaces are open
* Showing prompt when moving out of patient chart and workspaces can't be closed
* Updated translations
* refactor: move functions above test functions
* refactor: move functions above test functions
---------
Co-authored-by: Vineet Sharma <[email protected]>
[33mcommit 9f3f1cda612f662fd3ea0b76a9c7002f2ab01270[m
Author: Usama Idriss Kakumba <[email protected]>
Date: Fri Feb 2 12:17:25 2024 +0300
(feat) O3-2782: Show an inline notification for camera access errors in the add attachment modal (#1631)
(feat) Show inline notification for camera access error
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit 5c712877203dd3788402a89154d14f695445a556[m
Author: Donald Kibet <[email protected]>
Date: Fri Feb 2 10:10:51 2024 +0300
(fix) prevent duplicate patient enrollment and add snackbar timeout (#1634)
(fix) prevent double patient enrollment while in edit mode and add `showSnackbar` time out
[33mcommit d88ad310b8f69eeac7148930b511a65068895815[m
Author: Jose Francisco <[email protected]>
Date: Thu Feb 1 19:38:24 2024 +0000
(feat) Support for pre-filled questions (#1602)
[33mcommit b7b50c34d3d9f258fd802573d95e88a43727927b[m
Author: Donald Kibet <[email protected]>
Date: Thu Feb 1 19:48:22 2024 +0300
(feat) allergies detail widget should span 4 columns by default (#1632)
[33mcommit 769b3cdf17595a14f4be257ffdf0e0816472bd1a[m
Author: Ian <[email protected]>
Date: Wed Jan 31 11:59:56 2024 -0500
(chore) Only auto-generate English translations (#1629)
[33mcommit 6f81c473ccdf57f13c6eb2b92d0d5f7e16201db2[m
Author: icrc-loliveira <[email protected]>
Date: Tue Jan 30 18:17:45 2024 +0000
(feat) Restrict attachments to configured allowed extensions (#1584)
Co-authored-by: Ian <[email protected]>
Co-authored-by: Luis Oliveira <[email protected]>
[33mcommit 59c465b153de14b6f145e881d7fd8c6438a129f7[m
Author: Vineet Sharma <[email protected]>
Date: Tue Jan 30 22:58:49 2024 +0530
(fix) Added translation for Lab order workspace title (#1625)
Added translation for Lab order workspace title
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit 9906ed5c85e7f0697206421122f1fba3c3d97c8b[m
Author: Ian <[email protected]>
Date: Tue Jan 30 12:10:40 2024 -0500
(fix) Fix TS issue with types for attachments
[33mcommit 7deb35a2bb14ed6985caf0befbf133f34329f40b[m
Author: jwnasambu <[email protected]>
Date: Tue Jan 30 19:26:19 2024 +0300
(fix) O3-2662: Unable to attach images when registering/editing a patient (#1585)
[33mcommit 49ece7394a161de642c466b7526964f6e7117bf5[m
Author: Vineet Sharma <[email protected]>
Date: Tue Jan 30 03:32:38 2024 +0530
(feat) Added translation for patient flags workspace (#1624)
Added translation for patient flags workspace
[33mcommit daad56a33b0abdc2d761ed5553572397fe38715f[m
Author: Dennis Kigen <[email protected]>
Date: Mon Jan 29 23:57:54 2024 +0300
(feat) Remove ResponsiveWrapper component from common lib (#1627)
[33mcommit ac5f146ac02036214ad81240acc179817799aac4[m
Author: Dennis Kigen <[email protected]>
Date: Sat Jan 27 19:59:25 2024 +0300
(fix) Remove direct dependency between common lib and forms apps (#1623)
(chore) Remove direct dependency between common lib and forms apps
[33mcommit 7969e809900f76dc79f3c672655fd7838145b28e[m
Author: Dennis Kigen <[email protected]>
Date: Fri Jan 26 19:48:31 2024 +0300
(feat) Specify upload size limit and supported file types in file uploader (#1620)
[33mcommit c7bc6d7753ec98b3108e57c13281f5433dcb49e1[m
Author: Ian <[email protected]>
Date: Fri Jan 26 11:40:06 2024 -0500
(chore) Switch to new frontend building job
[33mcommit 9b0c7bbe5fb61f7471371e38036c509771b33bf3[m
Author: Dennis Kigen <[email protected]>
Date: Fri Jan 26 12:29:27 2024 +0300
(feat) Add ResponsiveWrapper to common lib (#1622)
[33mcommit bd572cee37c98ca8cc02d15caf2137757ea93256[m
Author: Ps world <[email protected]>
Date: Thu Jan 25 17:30:03 2024 +0530
(refactor) O3-2709: Use Camera carbon icon instead of the SVG placeholder in registration form (#1618)
* (refactor): O3-2709 Used <Camera /> instead of svg in registration form
* Fixup
---------
Co-authored-by: Ps <[email protected]>
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit 0c55f93cd4032d57913314a5dd5f6b44374c807a[m
Author: Dennis Kigen <[email protected]>
Date: Wed Jan 24 23:22:17 2024 +0300
(feat) Add isLowContrast prop to encounter deletion notifications (#1614)
[33mcommit f1df2be3ac4f60ebbd62dc5df80ae90a0d8cf87e[m
Author: Dennis Kigen <[email protected]>
Date: Wed Jan 24 23:12:10 2024 +0300
(feat) Require a visit to launch the visit notes form (#1617)
[33mcommit d802d68feb48fb3a574c45d2a14e93d5f6e7ecf6[m
Author: Brandon Istenes <[email protected]>
Date: Wed Jan 24 20:25:12 2024 +0100
(feat) O3-2618: Attachments not hooked up in Visit Note (#1522)
* Basic visit note attachment functionality working
* Improve image display; call mutate on attachments SWR; support for changing the image
* Clean up; make image only preview when its an image
* Remove 'Add an image' text
* Attachments API functions moved out to @openmrs/esm-framework
* Update core dep
[33mcommit 8123a3acaedf3c3d55f2a3eb6183c7886cebc246[m
Author: Ps world <[email protected]>
Date: Wed Jan 24 03:46:41 2024 +0530
(refactor) O3-2709: Update placeholder camera icon used in registration form (#1601)
* (refactor): O3-2709 used Carbon Library camera icon for placeholder in patient registration
* Fix indentation
---------
Co-authored-by: Ps <[email protected]>
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit ebe209010e6048e93d286b47fb542e799fe41100[m
Author: Dennis Kigen <[email protected]>
Date: Wed Jan 24 01:16:23 2024 +0300
(chore) Bump @openmrs/ngx-formentry (#1610)
[33mcommit 02e794f0bdeb9348ad308f3267b947a49625fa16[m
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed Jan 24 00:27:35 2024 +0300
Bump follow-redirects from 1.15.3 to 1.15.5 (#1612)
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.3 to 1.15.5.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.15.3...v1.15.5)
---
updated-dependencies:
- dependency-name: follow-redirects
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit 1c4540456bbc4f429aad788f97c3c1aefe61723d[m
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed Jan 24 00:10:06 2024 +0300
Bump ua-parser-js from 0.7.31 to 0.7.37 (#1559)
Bumps [ua-parser-js](https://github.com/faisalman/ua-parser-js) from 0.7.31 to 0.7.37.
- [Release notes](https://github.com/faisalman/ua-parser-js/releases)
- [Changelog](https://github.com/faisalman/ua-parser-js/blob/0.7.37/changelog.md)
- [Commits](https://github.com/faisalman/ua-parser-js/compare/0.7.31...0.7.37)
---
updated-dependencies:
- dependency-name: ua-parser-js
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
[33mcommit b3af1a452d58079342c879e09a970b2053f5c46c[m
Author: elimm <[email protected]>
Date: Tue Jan 23 22:27:40 2024 +0200
(fix) O3-2752: Encounter view UI fixes for RTL languages (#1596)
* (fix) O3-2752: encounter view RTL alignment fix
* (fix) O3-2752: remove global overrides
---------
Co-authored-by: Andrey Y <[email protected]>
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit 897013d838f6a67c394deda10c1a7bb5798216f3[m
Author: Jamie Arodi <[email protected]>
Date: Tue Jan 23 22:44:04 2024 +0300
(fix) See all results button navigates to the results viewer (#1611)
fixed url
[33mcommit 5d608f844188ff9c208e6a5e1b9d9fea43e85dea[m
Author: Usama Idriss Kakumba <[email protected]>
Date: Tue Jan 23 22:28:03 2024 +0300
(fix) O3-2713: Fix positioning of side rail action badges (#1599)
* fix: fix side rail actions and badges off center
* Fix km.json
[33mcommit 24fa71c63b98f019c459d6427cc5ba642e83ed92[m
Author: Pradip Ram <[email protected]>
Date: Tue Jan 23 23:28:41 2024 +0530
(fix) O3-2757: Change all anchor tag cursors from text to pointer type. (#1604)
Co-authored-by: Vineet Sharma <[email protected]>
[33mcommit 228465c790d7e4002fe05bdba610398222fbd956[m
Author: befantasy <[email protected]>
Date: Tue Jan 23 20:54:03 2024 +0800
(chore) Adjust cron scheduling for tx-pull workflow (#1609)
Co-authored-by: Ian <[email protected]>
[33mcommit 3f187cedc7ab6cb4072809d67b64a9a1dfb8455b[m
Author: chibongho <[email protected]>
Date: Mon Jan 22 13:09:08 2024 -0500
(fix) O3-2715: make clinical forms workspace not maximizable (#1608)
(fix) O3-2715: make Forms Dashboard workspace not maximizable
[33mcommit 7c6228420c1b3fddd1cac51634811d04bf3ec93b[m
Author: Njidda Salifu <[email protected]>
Date: Mon Jan 22 14:53:42 2024 +0100
(feat) O3-2755: Use snackbar notification in allergies app (#1603)
Use Snackbar notification in allergies widget
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit d0b5315bb4643bb7f154a391ae70c254c699d30a[m
Author: Dennis Kigen <[email protected]>
Date: Mon Jan 22 12:44:23 2024 +0300
(feat) Add translations for form navigation links (#1606)
[33mcommit eb7dbeccf0a6faf65a0f900f60cfa4f9944ad130[m
Author: befantasy <[email protected]>
Date: Sun Jan 21 13:25:57 2024 +0800
(chore) Update Transifex config (#1600)
After checking the results and command instructions, it seems that the new version of Transifex requires an additional parameter to be configured: "resource_name". Otherwise, the new added resource name displayed on Transifex will default to "en.json".
[33mcommit a7cbdf8988167785ec706e39760755743b65105c[m
Author: Brandon Istenes <[email protected]>
Date: Fri Jan 19 16:51:05 2024 +0000
(fix) Use registerWorkspace to register clinical-forms-workspace (#1591)
[33mcommit bd62b368a9ade9edc31b06b262f0eeefad1cb56e[m
Author: befantasy <[email protected]>
Date: Fri Jan 19 06:53:20 2024 +0800
(chore) Update transifex config (#1598)
Update config
update the config to sync with the transifex project
[33mcommit 100ce9100fe34d0982c03fa0669fd2645b96ccce[m
Author: Samuel Male <[email protected]>
Date: Thu Jan 18 23:27:40 2024 +0300
(feat) Revitalized Immunization Support (#1572)
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit 2808c0f36ebcef8b2543b8dc18ab64914fce68c4[m
Author: Dennis Kigen <[email protected]>
Date: Wed Jan 17 23:59:50 2024 +0300
(fix) Fix medications display in visit summary (#1597)
* (fix) Fix medications display in visit summary
* Fixup
[33mcommit aba1bdca798928da12396b6a16fab41dd581efaf[m[33m ([m[1;32mO3-2705[m[33m)[m
Author: Dennis Kigen <[email protected]>
Date: Wed Jan 17 08:13:59 2024 +0300
(chore) Enable `continue-on-error` for deploy job in CI workflow (#1593)
* (chore) Add a retry step for the deploy job in CI
* Update ci.yml
---------
Co-authored-by: Ian <[email protected]>
[33mcommit c6654d4258a8d112d47893f7eed5614c389aa54e[m
Author: Ian <[email protected]>
Date: Tue Jan 16 15:47:32 2024 -0500
(chore) Remove biometrics from tx config (#1594)
[33mcommit 37f56de509abe0c022b5855370c8dafc6d1b9bca[m
Author: Ian <[email protected]>
Date: Tue Jan 16 15:10:45 2024 -0500
(chore) Add GitHub Actions flows to automate Transifex (#1592)
(chore) Add TX automation workflows
[33mcommit dbb9f66ca55a95bd4f7392d2e3b077d6c0cf7486[m
Author: Brandon Istenes <[email protected]>
Date: Tue Jan 16 18:50:34 2024 +0000
(fix) Trivial refactor in relationship component (#1590)
[33mcommit 8016ca5ebe2edb5b7abb5517ee979bcaca4f58bd[m
Author: Brandon Istenes <[email protected]>
Date: Tue Jan 16 18:47:20 2024 +0000
(fix) Remove cruft from config schema (#1589)
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit f29a6f3b051866b56b7baa4ab08ed6b2af7e2e9e[m
Author: Daud Kakumirizi <[email protected]>
Date: Tue Jan 16 21:07:02 2024 +0300
(feat) KH-428: Updated Khmer translation for `markDeceased` (#1588)
KH-428: Updated Khmer translation for 'markDeceased'
[33mcommit bd674836b1141887c49394c06b94a93a0332bf92[m
Author: Brandon Istenes <[email protected]>
Date: Tue Jan 16 17:34:43 2024 +0000
BREAKING: Clean up patient banner config (#1555)
[33mcommit 84939274d45463605a61c6a56bb34bd99ab31cde[m
Author: Ps world <[email protected]>
Date: Tue Jan 16 18:34:07 2024 +0530
(fix) O3-2709: wrong image placeholder used for add image in patient registration (#1580)
[33mcommit 7e05168704f271ff70bbb881c9dc27758fe57a2d[m
Author: Ps world <[email protected]>
Date: Tue Jan 16 02:09:30 2024 +0530
(fix) O3-2655: Record Vitals: Error message for invalid values pops up only once (#1578)
* (fix) O3-2655: Record Vitals: Error message for invalid values pops up only once
* Added Tests
---------
Co-authored-by: Ps <[email protected]>
[33mcommit efe1e24580975216ef405fd9e34eb3b56041e380[m
Author: Brandon Istenes <[email protected]>
Date: Mon Jan 15 20:36:21 2024 +0000
(chore) Commit extracted translations for zh (#1587)
* (chore) Commit extracted translations for zh
* Fixup
---------
Co-authored-by: Dennis Kigen <[email protected]>
[33mcommit c8423f65d77dc39a8ca5c0e58c710ea4daeed286[m
Author: Brandon Istenes <[email protected]>
Date: Mon Jan 15 20:35:40 2024 +0000
(fix) Log a warning if workspaces are registered as extensions (#1586)
[33mcommit 87d61610779ed2d2b20e6e73fa30b63541238e91[m
Author: Brandon Istenes <[email protected]>
Date: Mon Jan 15 17:34:46 2024 +0000
(fix) O3-1594 BUG: Patient chart close button has inconsistent behavior (#1581)
[33mcommit 6bac38067b3c6134d67d9f7635bb9dae3739459a[m
Author: befantasy <[email protected]>
Date: Mon Jan 15 18:14:07 2024 +0800
Updat the translation for zh and zh_CN (#1582)
* Update zh.json
* Update zh_CN.json
* Update zh.json
* Update zh_CN.json
* Update zh.json
* Update zh_CN.json
* Update zh.json
* Update zh_CN.json
* Update zh.json
* Update zh_CN.json
* Update zh.json
* Update zh_CN.json
* Update zh.json
* Update zh_CN.json