@kenyaemr/esm-imaging-orders-app 4.0.1-pre.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/.turbo/turbo-build.log +188 -0
- package/README.md +8 -0
- package/dist/123.js +2 -0
- package/dist/123.js.LICENSE.txt +40 -0
- package/dist/123.js.map +1 -0
- package/dist/144.js +2 -0
- package/dist/144.js.LICENSE.txt +19 -0
- package/dist/144.js.map +1 -0
- package/dist/225.js +1 -0
- package/dist/225.js.map +1 -0
- package/dist/300.js +1 -0
- package/dist/364.js +1 -0
- package/dist/364.js.map +1 -0
- package/dist/372.js +1 -0
- package/dist/372.js.map +1 -0
- package/dist/41.js +2 -0
- package/dist/41.js.LICENSE.txt +9 -0
- package/dist/41.js.map +1 -0
- package/dist/495.js +1 -0
- package/dist/495.js.map +1 -0
- package/dist/606.js +1 -0
- package/dist/606.js.map +1 -0
- package/dist/831.js +2 -0
- package/dist/831.js.LICENSE.txt +5 -0
- package/dist/831.js.map +1 -0
- package/dist/876.js +2 -0
- package/dist/876.js.LICENSE.txt +9 -0
- package/dist/876.js.map +1 -0
- package/dist/913.js +2 -0
- package/dist/913.js.LICENSE.txt +32 -0
- package/dist/913.js.map +1 -0
- package/dist/kenyaemr-esm-imaging-orders-app.js +1 -0
- package/dist/kenyaemr-esm-imaging-orders-app.js.buildmanifest.json +401 -0
- package/dist/kenyaemr-esm-imaging-orders-app.js.map +1 -0
- package/dist/main.js +2 -0
- package/dist/main.js.LICENSE.txt +60 -0
- package/dist/main.js.map +1 -0
- package/dist/routes.json +1 -0
- package/jest.config.js +8 -0
- package/package.json +55 -0
- package/src/config-schema.ts +51 -0
- package/src/constants.ts +3 -0
- package/src/declarations.d.ts +6 -0
- package/src/form/imaging-orders/add-imaging-orders/add-imaging-order.scss +44 -0
- package/src/form/imaging-orders/add-imaging-orders/add-imaging-order.workspace.tsx +86 -0
- package/src/form/imaging-orders/add-imaging-orders/imaging-order-form.component.tsx +354 -0
- package/src/form/imaging-orders/add-imaging-orders/imaging-order-form.scss +79 -0
- package/src/form/imaging-orders/add-imaging-orders/imaging-order.ts +19 -0
- package/src/form/imaging-orders/add-imaging-orders/imaging-type-search.scss +115 -0
- package/src/form/imaging-orders/add-imaging-orders/imaging-type-search.tsx +235 -0
- package/src/form/imaging-orders/add-imaging-orders/useImagingTypes.ts +89 -0
- package/src/form/imaging-orders/api.ts +230 -0
- package/src/form/imaging-orders/imaging-order-basket-panel/imaging-icon.component.tsx +40 -0
- package/src/form/imaging-orders/imaging-order-basket-panel/imaging-order-basket-item-tile.component.tsx +96 -0
- package/src/form/imaging-orders/imaging-order-basket-panel/imaging-order-basket-item-tile.scss +72 -0
- package/src/form/imaging-orders/imaging-order-basket-panel/imaging-order-basket-panel.extension.tsx +191 -0
- package/src/form/imaging-orders/imaging-order-basket-panel/imaging-order-basket-panel.scss +74 -0
- package/src/form/imaging-orders/useOrderConfig.ts +48 -0
- package/src/form/imaging-report-form/imaging-report-form.component.tsx +161 -0
- package/src/form/imaging-report-form/imaging-report-form.scss +30 -0
- package/src/form/imaging-report-form/imaging.resource.ts +360 -0
- package/src/header/imagining-header.component.tsx +17 -0
- package/src/header/imagining-header.scss +5 -0
- package/src/hooks/useOrdersWorklist.ts +59 -0
- package/src/hooks/useSearchGroupedResults.ts +27 -0
- package/src/hooks/useSearchResults.ts +51 -0
- package/src/imaging-orders.component.tsx +14 -0
- package/src/imaging-tabs/approved/approved-orders.component.tsx +31 -0
- package/src/imaging-tabs/approved/approved-orders.scss +0 -0
- package/src/imaging-tabs/imaging-tabs.component.tsx +79 -0
- package/src/imaging-tabs/imaging-tabs.scss +5 -0
- package/src/imaging-tabs/orders-not-done/orders-not-done.component.tsx +42 -0
- package/src/imaging-tabs/referred-test/referred-ordered.component.tsx +26 -0
- package/src/imaging-tabs/referred-test/referred-ordered.scss +6 -0
- package/src/imaging-tabs/review-ordered/review-imaging-report-modal/review-imaging-report-dialog.component.tsx +138 -0
- package/src/imaging-tabs/review-ordered/review-imaging-report-modal/review-imaging-report-dialog.scss +5 -0
- package/src/imaging-tabs/review-ordered/review-ordered.component.tsx +28 -0
- package/src/imaging-tabs/review-ordered/review-ordered.scss +0 -0
- package/src/imaging-tabs/test-ordered/pick-imaging-order/add-to-worklist-dialog.component.tsx +94 -0
- package/src/imaging-tabs/test-ordered/pick-imaging-order/add-to-worklist-dialog.resource.ts +137 -0
- package/src/imaging-tabs/test-ordered/pick-imaging-order/add-to-worklist-dialog.scss +38 -0
- package/src/imaging-tabs/test-ordered/reject-order-dialog/radiology-reject-reason.component.tsx +40 -0
- package/src/imaging-tabs/test-ordered/reject-order-dialog/reject-order-dialog.component.tsx +95 -0
- package/src/imaging-tabs/test-ordered/reject-order-dialog/reject-order-dialog.scss +14 -0
- package/src/imaging-tabs/test-ordered/tests-ordered.component.tsx +35 -0
- package/src/imaging-tabs/test-ordered/tests-ordered.scss +13 -0
- package/src/imaging-tabs/test-ordered/transition-patient-new-queue/transition-latest-queue-entry-button.component.tsx +34 -0
- package/src/imaging-tabs/test-ordered/transition-patient-new-queue/transition-latest-queue-entry-button.scss +14 -0
- package/src/imaging-tabs/work-list/work-list.component.tsx +45 -0
- package/src/imaging-tabs/work-list/work-list.resource.ts +150 -0
- package/src/imaging-tabs/work-list/work-list.scss +207 -0
- package/src/index.ts +45 -0
- package/src/left-panel-link.tsx +42 -0
- package/src/root.component.tsx +19 -0
- package/src/routes.json +58 -0
- package/src/shared/imaging.resource.tsx +65 -0
- package/src/shared/ui/common/action-button/action-button.component.tsx +66 -0
- package/src/shared/ui/common/action-button/order-action-extension.component.tsx +21 -0
- package/src/shared/ui/common/grouped-imaging-types.ts +48 -0
- package/src/shared/ui/common/grouped-orders-table.component.tsx +154 -0
- package/src/shared/ui/common/grouped-orders-table.scss +13 -0
- package/src/shared/ui/common/list-order-details.component.tsx +72 -0
- package/src/shared/ui/common/list-order-details.scss +52 -0
- package/src/shared/ui/common/order-detail.component.tsx +14 -0
- package/src/shared/ui/common/order-detail.scss +14 -0
- package/src/types/index.ts +49 -0
- package/src/utils/functions.ts +238 -0
- package/translations/en.json +69 -0
- package/tsconfig.json +5 -0
- package/webpack.config.js +1 -0
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
assets by path *.js 3.55 MiB
|
|
2
|
+
assets by chunk 2.16 MiB (id hint: vendors)
|
|
3
|
+
assets by status 1.95 MiB [big]
|
|
4
|
+
asset 831.js 1.36 MiB [emitted] [minimized] [big] (id hint: vendors) 2 related assets
|
|
5
|
+
asset 123.js 601 KiB [emitted] [minimized] [big] (id hint: vendors) 2 related assets
|
|
6
|
+
asset 144.js 130 KiB [emitted] [minimized] (id hint: vendors) 2 related assets
|
|
7
|
+
asset 913.js 82.2 KiB [emitted] [minimized] (id hint: vendors) 2 related assets
|
|
8
|
+
asset 372.js 6.09 KiB [emitted] [minimized] (id hint: vendors) 1 related asset
|
|
9
|
+
+ 9 assets
|
|
10
|
+
assets by path *.json 9.01 KiB
|
|
11
|
+
asset kenyaemr-esm-imaging-orders-app.js.buildmanifest.json 8.02 KiB [emitted]
|
|
12
|
+
asset routes.json 1020 bytes [emitted] [from: src/routes.json] [copied]
|
|
13
|
+
orphan modules 4.35 MiB [orphan] 692 modules
|
|
14
|
+
runtime modules 40.3 KiB 30 modules
|
|
15
|
+
built modules 8.71 MiB (javascript) 252 bytes (share-init) 252 bytes (consume-shared) [built]
|
|
16
|
+
modules by path ../../node_modules/ 8.28 MiB 86 modules
|
|
17
|
+
modules by path ./ 445 KiB
|
|
18
|
+
modules by path ./src/ 443 KiB 18 modules
|
|
19
|
+
modules by path ./translations/ 2.61 KiB 2 modules
|
|
20
|
+
provide-module modules 252 bytes
|
|
21
|
+
modules by path provide shared module (default) swr/ 84 bytes 2 modules
|
|
22
|
+
+ 4 modules
|
|
23
|
+
consume-shared-module modules 252 bytes
|
|
24
|
+
modules by path consume shared module (default) swr/ 84 bytes 2 modules
|
|
25
|
+
+ 4 modules
|
|
26
|
+
container entry 42 bytes [built] [code generated]
|
|
27
|
+
|
|
28
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/form/imaging-report-form/imaging-report-form.scss
|
|
29
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
30
|
+
<w>
|
|
31
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
32
|
+
<w>
|
|
33
|
+
<w> null
|
|
34
|
+
|
|
35
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/form/imaging-orders/add-imaging-orders/add-imaging-order.scss
|
|
36
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
37
|
+
<w>
|
|
38
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
39
|
+
<w>
|
|
40
|
+
<w> null
|
|
41
|
+
|
|
42
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/form/imaging-orders/imaging-order-basket-panel/imaging-order-basket-panel.scss
|
|
43
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
44
|
+
<w>
|
|
45
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
46
|
+
<w>
|
|
47
|
+
<w> null
|
|
48
|
+
|
|
49
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/imaging-tabs/test-ordered/reject-order-dialog/reject-order-dialog.scss
|
|
50
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
51
|
+
<w>
|
|
52
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
53
|
+
<w>
|
|
54
|
+
<w> null
|
|
55
|
+
|
|
56
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/imaging-tabs/test-ordered/pick-imaging-order/add-to-worklist-dialog.scss
|
|
57
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
58
|
+
<w>
|
|
59
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
60
|
+
<w>
|
|
61
|
+
<w> null
|
|
62
|
+
|
|
63
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/imaging-tabs/review-ordered/review-imaging-report-modal/review-imaging-report-dialog.scss
|
|
64
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
65
|
+
<w>
|
|
66
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
67
|
+
<w>
|
|
68
|
+
<w> null
|
|
69
|
+
|
|
70
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/form/imaging-orders/add-imaging-orders/imaging-type-search.scss
|
|
71
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
72
|
+
<w>
|
|
73
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
74
|
+
<w>
|
|
75
|
+
<w> null
|
|
76
|
+
|
|
77
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/form/imaging-orders/add-imaging-orders/imaging-order-form.scss
|
|
78
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
79
|
+
<w>
|
|
80
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
81
|
+
<w>
|
|
82
|
+
<w> null
|
|
83
|
+
|
|
84
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/form/imaging-orders/imaging-order-basket-panel/imaging-order-basket-item-tile.scss
|
|
85
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
86
|
+
<w>
|
|
87
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
88
|
+
<w>
|
|
89
|
+
<w> null
|
|
90
|
+
|
|
91
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/imaging-tabs/imaging-tabs.scss
|
|
92
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
93
|
+
<w>
|
|
94
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
95
|
+
<w>
|
|
96
|
+
<w> null
|
|
97
|
+
|
|
98
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/header/imagining-header.scss
|
|
99
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
100
|
+
<w>
|
|
101
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
102
|
+
<w>
|
|
103
|
+
<w> null
|
|
104
|
+
|
|
105
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/imaging-tabs/work-list/work-list.scss
|
|
106
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
107
|
+
<w>
|
|
108
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
109
|
+
<w>
|
|
110
|
+
<w> null
|
|
111
|
+
|
|
112
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/imaging-tabs/test-ordered/tests-ordered.scss
|
|
113
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
114
|
+
<w>
|
|
115
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
116
|
+
<w>
|
|
117
|
+
<w> null
|
|
118
|
+
|
|
119
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/shared/ui/common/grouped-orders-table.scss
|
|
120
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
121
|
+
<w>
|
|
122
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
123
|
+
<w>
|
|
124
|
+
<w> null
|
|
125
|
+
|
|
126
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!../../node_modules/@openmrs/esm-patient-common-lib/src/empty-state/empty-state.scss
|
|
127
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
128
|
+
<w>
|
|
129
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
130
|
+
<w>
|
|
131
|
+
<w> null
|
|
132
|
+
|
|
133
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!../../node_modules/@openmrs/esm-patient-common-lib/src/cards/card-header.scss
|
|
134
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
135
|
+
<w>
|
|
136
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
137
|
+
<w>
|
|
138
|
+
<w> null
|
|
139
|
+
|
|
140
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/shared/ui/common/list-order-details.scss
|
|
141
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
142
|
+
<w>
|
|
143
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
144
|
+
<w>
|
|
145
|
+
<w> null
|
|
146
|
+
|
|
147
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!../../node_modules/@openmrs/esm-patient-common-lib/src/pagination/pagination.scss
|
|
148
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
149
|
+
<w>
|
|
150
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
151
|
+
<w>
|
|
152
|
+
<w> null
|
|
153
|
+
|
|
154
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!../../node_modules/@openmrs/esm-patient-common-lib/src/error-state/error-state.scss
|
|
155
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
156
|
+
<w>
|
|
157
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
158
|
+
<w>
|
|
159
|
+
<w> null
|
|
160
|
+
|
|
161
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/imaging-tabs/test-ordered/transition-patient-new-queue/transition-latest-queue-entry-button.scss
|
|
162
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
163
|
+
<w>
|
|
164
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
165
|
+
<w>
|
|
166
|
+
<w> null
|
|
167
|
+
|
|
168
|
+
LOG from ../../node_modules/sass-loader/dist/cjs.js sass-loader ../../node_modules/@openmrs/webpack-config/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/shared/ui/common/order-detail.scss
|
|
169
|
+
<w> Deprecation The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
|
|
170
|
+
<w>
|
|
171
|
+
<w> More info: https://sass-lang.com/d/legacy-js-api
|
|
172
|
+
<w>
|
|
173
|
+
<w> null
|
|
174
|
+
|
|
175
|
+
WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
|
|
176
|
+
This can impact web performance.
|
|
177
|
+
Assets:
|
|
178
|
+
main.js (1.02 MiB)
|
|
179
|
+
831.js (1.36 MiB)
|
|
180
|
+
364.js (307 KiB)
|
|
181
|
+
123.js (601 KiB)
|
|
182
|
+
|
|
183
|
+
WARNING in entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.
|
|
184
|
+
Entrypoints:
|
|
185
|
+
main (1.02 MiB)
|
|
186
|
+
main.js
|
|
187
|
+
|
|
188
|
+
webpack 5.95.0 compiled with 2 warnings in 112864 ms
|
package/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# KenyaEMR ESM Imaging Orders App
|
|
4
|
+
|
|
5
|
+
This is a frontend module that provides imaging orders functionality. Currently, we support:
|
|
6
|
+
|
|
7
|
+
- Radiology orders
|
|
8
|
+
- Radiology report
|