@kenyaemr/esm-express-workflow-app 5.4.2-pre.2389

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.
Files changed (89) hide show
  1. package/.turbo/turbo-build.log +39 -0
  2. package/README.md +1 -0
  3. package/dist/144.js +2 -0
  4. package/dist/144.js.LICENSE.txt +19 -0
  5. package/dist/144.js.map +1 -0
  6. package/dist/20.js +1 -0
  7. package/dist/20.js.map +1 -0
  8. package/dist/216.js +2 -0
  9. package/dist/216.js.LICENSE.txt +9 -0
  10. package/dist/216.js.map +1 -0
  11. package/dist/300.js +1 -0
  12. package/dist/41.js +2 -0
  13. package/dist/41.js.LICENSE.txt +9 -0
  14. package/dist/41.js.map +1 -0
  15. package/dist/417.js +2 -0
  16. package/dist/417.js.LICENSE.txt +59 -0
  17. package/dist/417.js.map +1 -0
  18. package/dist/464.js +1 -0
  19. package/dist/464.js.map +1 -0
  20. package/dist/470.js +1 -0
  21. package/dist/470.js.map +1 -0
  22. package/dist/495.js +1 -0
  23. package/dist/495.js.map +1 -0
  24. package/dist/500.js +1 -0
  25. package/dist/500.js.map +1 -0
  26. package/dist/570.js +1 -0
  27. package/dist/570.js.map +1 -0
  28. package/dist/601.js +1 -0
  29. package/dist/601.js.map +1 -0
  30. package/dist/622.js +1 -0
  31. package/dist/622.js.map +1 -0
  32. package/dist/639.js +1 -0
  33. package/dist/639.js.map +1 -0
  34. package/dist/876.js +1 -0
  35. package/dist/876.js.map +1 -0
  36. package/dist/89.js +1 -0
  37. package/dist/89.js.map +1 -0
  38. package/dist/913.js +2 -0
  39. package/dist/913.js.LICENSE.txt +32 -0
  40. package/dist/913.js.map +1 -0
  41. package/dist/main.js +2 -0
  42. package/dist/main.js.LICENSE.txt +89 -0
  43. package/dist/main.js.map +1 -0
  44. package/dist/openmrs-esm-express-workflow-app.js +1 -0
  45. package/dist/openmrs-esm-express-workflow-app.js.buildmanifest.json +523 -0
  46. package/dist/openmrs-esm-express-workflow-app.js.map +1 -0
  47. package/dist/routes.json +1 -0
  48. package/jest.config.js +3 -0
  49. package/package.json +59 -0
  50. package/src/accounting/accounting.component.tsx +7 -0
  51. package/src/accounting/index.tsx +20 -0
  52. package/src/admissions/admission.scss +0 -0
  53. package/src/admissions/admissions.component.tsx +8 -0
  54. package/src/admissions/index.tsx +20 -0
  55. package/src/config-schema.ts +3 -0
  56. package/src/constants.ts +1 -0
  57. package/src/consulation/consulation.component.tsx +7 -0
  58. package/src/consulation/index.ts +20 -0
  59. package/src/dashboard/dashboard-container.component.tsx +26 -0
  60. package/src/dashboard/dashboard-container.scss +0 -0
  61. package/src/declarations.d.ts +3 -0
  62. package/src/facility-dashboard/facility-dashboard.component.tsx +7 -0
  63. package/src/facility-dashboard/index.tsx +20 -0
  64. package/src/index.ts +29 -0
  65. package/src/lab/index.tsx +20 -0
  66. package/src/lab/laboratory.component.tsx +7 -0
  67. package/src/mch/index.tsx +20 -0
  68. package/src/mch/mch.component.tsx +7 -0
  69. package/src/pharmacy/index.ts +20 -0
  70. package/src/pharmacy/pharmacy.component.tsx +7 -0
  71. package/src/procedures/index.ts +20 -0
  72. package/src/procedures/procedures.component.tsx +7 -0
  73. package/src/radiology/index.ts +20 -0
  74. package/src/radiology/radiology.component.tsx +7 -0
  75. package/src/registration/index.ts +20 -0
  76. package/src/registration/registration.component.tsx +8 -0
  77. package/src/registration/registration.scss +0 -0
  78. package/src/reports/index.ts +20 -0
  79. package/src/reports/reports.component.tsx +7 -0
  80. package/src/root.component.tsx +22 -0
  81. package/src/root.scss +11 -0
  82. package/src/routes.json +208 -0
  83. package/src/triage/index.ts +20 -0
  84. package/src/triage/triage.component.tsx +7 -0
  85. package/src/types/index.ts +5 -0
  86. package/src/types.ts +0 -0
  87. package/translations/en.json +1 -0
  88. package/tsconfig.json +4 -0
  89. package/webpack.config.js +1 -0
@@ -0,0 +1,89 @@
1
+ /*!
2
+ Copyright (c) 2018 Jed Watson.
3
+ Licensed under the MIT License (MIT), see
4
+ http://jedwatson.github.io/classnames
5
+ */
6
+
7
+ /*!
8
+ * decimal.js v10.5.0
9
+ * An arbitrary-precision Decimal type for JavaScript.
10
+ * https://github.com/MikeMcl/decimal.js
11
+ * Copyright (c) 2025 Michael Mclaughlin <M8ch88l@gmail.com>
12
+ * MIT Licence
13
+ */
14
+
15
+ /*!
16
+ * Determine if an object is a Buffer
17
+ *
18
+ * @author Feross Aboukhadijeh <https://feross.org>
19
+ * @license MIT
20
+ */
21
+
22
+ /*!
23
+ * tabbable 6.2.0
24
+ * @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE
25
+ */
26
+
27
+ /*! *****************************************************************************
28
+ Copyright (c) Microsoft Corporation.
29
+
30
+ Permission to use, copy, modify, and/or distribute this software for any
31
+ purpose with or without fee is hereby granted.
32
+
33
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
34
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
35
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
36
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
37
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
38
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
39
+ PERFORMANCE OF THIS SOFTWARE.
40
+ ***************************************************************************** */
41
+
42
+ /**
43
+ * @license React
44
+ * react-dom.production.min.js
45
+ *
46
+ * Copyright (c) Facebook, Inc. and its affiliates.
47
+ *
48
+ * This source code is licensed under the MIT license found in the
49
+ * LICENSE file in the root directory of this source tree.
50
+ */
51
+
52
+ /**
53
+ * @license React
54
+ * react-jsx-runtime.production.min.js
55
+ *
56
+ * Copyright (c) Facebook, Inc. and its affiliates.
57
+ *
58
+ * This source code is licensed under the MIT license found in the
59
+ * LICENSE file in the root directory of this source tree.
60
+ */
61
+
62
+ /**
63
+ * @license React
64
+ * scheduler.production.min.js
65
+ *
66
+ * Copyright (c) Facebook, Inc. and its affiliates.
67
+ *
68
+ * This source code is licensed under the MIT license found in the
69
+ * LICENSE file in the root directory of this source tree.
70
+ */
71
+
72
+ /**
73
+ * @license React
74
+ * use-sync-external-store-shim.production.js
75
+ *
76
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
77
+ *
78
+ * This source code is licensed under the MIT license found in the
79
+ * LICENSE file in the root directory of this source tree.
80
+ */
81
+
82
+ /** @license React v17.0.2
83
+ * react-is.production.min.js
84
+ *
85
+ * Copyright (c) Facebook, Inc. and its affiliates.
86
+ *
87
+ * This source code is licensed under the MIT license found in the
88
+ * LICENSE file in the root directory of this source tree.
89
+ */