@kenyaemr/esm-appointments-app 7.0.2-pre.65

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 (181) hide show
  1. package/.turbo/turbo-build.log +42 -0
  2. package/dist/130.js +2 -0
  3. package/dist/130.js.LICENSE.txt +3 -0
  4. package/dist/130.js.map +1 -0
  5. package/dist/152.js +1 -0
  6. package/dist/152.js.map +1 -0
  7. package/dist/224.js +1 -0
  8. package/dist/224.js.map +1 -0
  9. package/dist/255.js +2 -0
  10. package/dist/255.js.LICENSE.txt +9 -0
  11. package/dist/255.js.map +1 -0
  12. package/dist/271.js +1 -0
  13. package/dist/303.js +1 -0
  14. package/dist/303.js.map +1 -0
  15. package/dist/309.js +1 -0
  16. package/dist/309.js.map +1 -0
  17. package/dist/319.js +1 -0
  18. package/dist/4.js +1 -0
  19. package/dist/4.js.map +1 -0
  20. package/dist/445.js +2 -0
  21. package/dist/445.js.LICENSE.txt +54 -0
  22. package/dist/445.js.map +1 -0
  23. package/dist/460.js +1 -0
  24. package/dist/501.js +1 -0
  25. package/dist/501.js.map +1 -0
  26. package/dist/574.js +1 -0
  27. package/dist/591.js +2 -0
  28. package/dist/591.js.LICENSE.txt +32 -0
  29. package/dist/591.js.map +1 -0
  30. package/dist/644.js +1 -0
  31. package/dist/729.js +1 -0
  32. package/dist/729.js.map +1 -0
  33. package/dist/757.js +1 -0
  34. package/dist/784.js +2 -0
  35. package/dist/784.js.LICENSE.txt +9 -0
  36. package/dist/784.js.map +1 -0
  37. package/dist/788.js +1 -0
  38. package/dist/807.js +1 -0
  39. package/dist/833.js +1 -0
  40. package/dist/857.js +2 -0
  41. package/dist/857.js.LICENSE.txt +5 -0
  42. package/dist/857.js.map +1 -0
  43. package/dist/904.js +1 -0
  44. package/dist/904.js.map +1 -0
  45. package/dist/kenyaemr-esm-appointments-app.js +1 -0
  46. package/dist/kenyaemr-esm-appointments-app.js.buildmanifest.json +699 -0
  47. package/dist/kenyaemr-esm-appointments-app.js.map +1 -0
  48. package/dist/main.js +2 -0
  49. package/dist/main.js.LICENSE.txt +64 -0
  50. package/dist/main.js.map +1 -0
  51. package/dist/routes.json +1 -0
  52. package/jest.config.js +3 -0
  53. package/package.json +57 -0
  54. package/src/admin/appointment-services/appointment-services-hook.ts +31 -0
  55. package/src/admin/appointment-services/appointment-services-validation.ts +17 -0
  56. package/src/admin/appointment-services/appointment-services.component.tsx +182 -0
  57. package/src/admin/appointment-services/appointment-services.scss +25 -0
  58. package/src/appointments/appointment-tabs.component.tsx +48 -0
  59. package/src/appointments/appointment-tabs.scss +53 -0
  60. package/src/appointments/appointment-tabs.test.tsx +55 -0
  61. package/src/appointments/common-components/appointments-actions.component.tsx +86 -0
  62. package/src/appointments/common-components/appointments-actions.scss +4 -0
  63. package/src/appointments/common-components/appointments-actions.test.tsx +201 -0
  64. package/src/appointments/common-components/appointments-table.component.tsx +277 -0
  65. package/src/appointments/common-components/appointments-table.scss +133 -0
  66. package/src/appointments/common-components/appointments-table.test.tsx +134 -0
  67. package/src/appointments/common-components/checkin-button.component.tsx +43 -0
  68. package/src/appointments/common-components/end-appointment-modal.component.tsx +104 -0
  69. package/src/appointments/common-components/end-appointment-modal.test.tsx +80 -0
  70. package/src/appointments/common-components/location-select-option.component.tsx +48 -0
  71. package/src/appointments/details/appointment-details.component.tsx +91 -0
  72. package/src/appointments/details/appointment-details.scss +81 -0
  73. package/src/appointments/details/appointment-details.test.tsx +103 -0
  74. package/src/appointments/scheduled/appointments-list.component.tsx +33 -0
  75. package/src/appointments/scheduled/early-appointments.component.tsx +32 -0
  76. package/src/appointments/scheduled/scheduled-appointments.component.tsx +215 -0
  77. package/src/appointments/scheduled/scheduled-appointments.scss +4 -0
  78. package/src/appointments/unscheduled/unscheduled-appointments.component.tsx +146 -0
  79. package/src/appointments/unscheduled/unscheduled-appointments.test.tsx +131 -0
  80. package/src/appointments/utils.tsx +80 -0
  81. package/src/appointments.component.tsx +44 -0
  82. package/src/appointments.test.tsx +15 -0
  83. package/src/calendar/appointments-calendar-view-view.scss +24 -0
  84. package/src/calendar/appointments-calendar-view.component.tsx +36 -0
  85. package/src/calendar/appointments-calendar-view.test.tsx +22 -0
  86. package/src/calendar/header/calendar-header.component.tsx +34 -0
  87. package/src/calendar/header/calendar-header.scss +32 -0
  88. package/src/calendar/monthly/days-of-week.component.tsx +16 -0
  89. package/src/calendar/monthly/days-of-week.scss +33 -0
  90. package/src/calendar/monthly/monthly-calendar-view.component.tsx +34 -0
  91. package/src/calendar/monthly/monthly-header.module.scss +14 -0
  92. package/src/calendar/monthly/monthly-header.module.tsx +40 -0
  93. package/src/calendar/monthly/monthly-view-workload.scss +188 -0
  94. package/src/calendar/monthly/monthly-workload-view-expanded.component.tsx +42 -0
  95. package/src/calendar/monthly/monthly-workload-view.component.tsx +109 -0
  96. package/src/config-schema.ts +151 -0
  97. package/src/constants.ts +55 -0
  98. package/src/createDashboardLink.component.tsx +39 -0
  99. package/src/dashboard.meta.ts +21 -0
  100. package/src/declarations.d.ts +4 -0
  101. package/src/empty-state/empty-data-illustration.component.tsx +39 -0
  102. package/src/empty-state/empty-state.component.tsx +32 -0
  103. package/src/empty-state/empty-state.scss +69 -0
  104. package/src/form/appointments-form.component.tsx +891 -0
  105. package/src/form/appointments-form.resource.ts +165 -0
  106. package/src/form/appointments-form.scss +113 -0
  107. package/src/form/appointments-form.test.tsx +212 -0
  108. package/src/header/appointments-header.component.tsx +79 -0
  109. package/src/header/appointments-header.scss +95 -0
  110. package/src/header/appointments-illustration.component.tsx +22 -0
  111. package/src/helpers/excel.ts +61 -0
  112. package/src/helpers/functions.ts +82 -0
  113. package/src/helpers/index.ts +2 -0
  114. package/src/helpers/time.tsx +15 -0
  115. package/src/home/home-appointments.component.tsx +22 -0
  116. package/src/home/home-appointments.scss +10 -0
  117. package/src/hooks/patientAppointmentContext.ts +15 -0
  118. package/src/hooks/selectedDateContext.ts +10 -0
  119. package/src/hooks/useAppointmentList.ts +48 -0
  120. package/src/hooks/useAppointmentService.ts +11 -0
  121. package/src/hooks/useAppointmentsCalendar.ts +68 -0
  122. package/src/hooks/useClinicalMetrics.ts +79 -0
  123. package/src/hooks/useDefaultLocation.ts +14 -0
  124. package/src/hooks/useOverlay.tsx +45 -0
  125. package/src/hooks/usePatientAppointmentHistory.ts +49 -0
  126. package/src/hooks/useProviders.ts +18 -0
  127. package/src/hooks/useTodaysVisits.ts +19 -0
  128. package/src/hooks/useUnscheduledAppointments.ts +45 -0
  129. package/src/index.ts +111 -0
  130. package/src/metrics/appointments-metrics.component.tsx +71 -0
  131. package/src/metrics/appointments-metrics.scss +15 -0
  132. package/src/metrics/appointments-metrics.test.tsx +49 -0
  133. package/src/metrics/metrics-card.component.tsx +76 -0
  134. package/src/metrics/metrics-card.scss +77 -0
  135. package/src/metrics/metrics-header.component.tsx +62 -0
  136. package/src/metrics/metrics-header.scss +33 -0
  137. package/src/past-visit/encounter-list.component.tsx +54 -0
  138. package/src/past-visit/past-visit.component.tsx +106 -0
  139. package/src/past-visit/past-visit.resource.ts +25 -0
  140. package/src/past-visit/past-visit.scss +106 -0
  141. package/src/patient-appointments/patient-appointments-action-menu.component.tsx +65 -0
  142. package/src/patient-appointments/patient-appointments-action-menu.scss +7 -0
  143. package/src/patient-appointments/patient-appointments-base.component.tsx +165 -0
  144. package/src/patient-appointments/patient-appointments-base.scss +85 -0
  145. package/src/patient-appointments/patient-appointments-base.test.tsx +91 -0
  146. package/src/patient-appointments/patient-appointments-cancel-modal.component.tsx +66 -0
  147. package/src/patient-appointments/patient-appointments-detailed-summary.component.tsx +15 -0
  148. package/src/patient-appointments/patient-appointments-header.scss +27 -0
  149. package/src/patient-appointments/patient-appointments-header.tsx +42 -0
  150. package/src/patient-appointments/patient-appointments-overview.component.tsx +35 -0
  151. package/src/patient-appointments/patient-appointments-overview.scss +7 -0
  152. package/src/patient-appointments/patient-appointments-table.scss +0 -0
  153. package/src/patient-appointments/patient-appointments-table.tsx +128 -0
  154. package/src/patient-appointments/patient-appointments.resource.ts +72 -0
  155. package/src/patient-appointments/patient-upcoming-appointments-card.component.tsx +122 -0
  156. package/src/patient-appointments/patient-upcoming-appointments-card.scss +46 -0
  157. package/src/patient-search/patient-search.component.tsx +34 -0
  158. package/src/patient-search/patient-search.scss +23 -0
  159. package/src/root.component.tsx +26 -0
  160. package/src/root.scss +50 -0
  161. package/src/routes.json +153 -0
  162. package/src/scheduled-appointments-config-schema.ts +169 -0
  163. package/src/types/index.ts +189 -0
  164. package/src/workload/monthly-view-workload/monthly-view.component.tsx +69 -0
  165. package/src/workload/monthly-view-workload/monthly-workload.scss +223 -0
  166. package/src/workload/monthly-view-workload/monthlyWorkCard.tsx +45 -0
  167. package/src/workload/workload-card.component.tsx +31 -0
  168. package/src/workload/workload.component.tsx +47 -0
  169. package/src/workload/workload.resource.ts +78 -0
  170. package/src/workload/workload.scss +92 -0
  171. package/translations/am.json +148 -0
  172. package/translations/ar.json +148 -0
  173. package/translations/en.json +159 -0
  174. package/translations/es.json +148 -0
  175. package/translations/fr.json +148 -0
  176. package/translations/he.json +148 -0
  177. package/translations/km.json +148 -0
  178. package/translations/zh.json +148 -0
  179. package/translations/zh_CN.json +148 -0
  180. package/tsconfig.json +5 -0
  181. package/webpack.config.js +1 -0
@@ -0,0 +1,699 @@
1
+ {
2
+ "chunks": [
3
+ {
4
+ "rendered": true,
5
+ "initial": false,
6
+ "entry": false,
7
+ "recorded": false,
8
+ "size": 8480,
9
+ "sizes": {
10
+ "javascript": 8480
11
+ },
12
+ "names": [],
13
+ "idHints": [],
14
+ "runtime": [
15
+ "@kenyaemr/esm-appointments-app",
16
+ "main"
17
+ ],
18
+ "files": [
19
+ "4.js"
20
+ ],
21
+ "auxiliaryFiles": [
22
+ "4.js.map"
23
+ ],
24
+ "hash": "35c68b63af981139",
25
+ "childrenByOrder": {}
26
+ },
27
+ {
28
+ "rendered": true,
29
+ "initial": false,
30
+ "entry": false,
31
+ "recorded": false,
32
+ "reason": "reused as split chunk (cache group: defaultVendors)",
33
+ "size": 1796489,
34
+ "sizes": {
35
+ "javascript": 1796489
36
+ },
37
+ "names": [],
38
+ "idHints": [
39
+ "vendors"
40
+ ],
41
+ "runtime": [
42
+ "@kenyaemr/esm-appointments-app",
43
+ "main"
44
+ ],
45
+ "files": [
46
+ "130.js"
47
+ ],
48
+ "auxiliaryFiles": [
49
+ "130.js.map"
50
+ ],
51
+ "hash": "bbc791727cd58e99",
52
+ "childrenByOrder": {}
53
+ },
54
+ {
55
+ "rendered": true,
56
+ "initial": false,
57
+ "entry": false,
58
+ "recorded": false,
59
+ "size": 480,
60
+ "sizes": {
61
+ "javascript": 480
62
+ },
63
+ "names": [],
64
+ "idHints": [],
65
+ "runtime": [
66
+ "@kenyaemr/esm-appointments-app",
67
+ "main"
68
+ ],
69
+ "files": [
70
+ "152.js"
71
+ ],
72
+ "auxiliaryFiles": [
73
+ "152.js.map"
74
+ ],
75
+ "hash": "6438449a0a34da4f",
76
+ "childrenByOrder": {}
77
+ },
78
+ {
79
+ "rendered": true,
80
+ "initial": true,
81
+ "entry": true,
82
+ "recorded": false,
83
+ "size": 4761981,
84
+ "sizes": {
85
+ "consume-shared": 252,
86
+ "javascript": 4740355,
87
+ "share-init": 294,
88
+ "runtime": 21080
89
+ },
90
+ "names": [
91
+ "main"
92
+ ],
93
+ "idHints": [],
94
+ "runtime": [
95
+ "main"
96
+ ],
97
+ "files": [
98
+ "main.js"
99
+ ],
100
+ "auxiliaryFiles": [
101
+ "main.js.map"
102
+ ],
103
+ "hash": "db703c939a68c983",
104
+ "childrenByOrder": {}
105
+ },
106
+ {
107
+ "rendered": false,
108
+ "initial": false,
109
+ "entry": false,
110
+ "recorded": false,
111
+ "reason": "reused as split chunk (cache group: default)",
112
+ "size": 42,
113
+ "sizes": {
114
+ "consume-shared": 42
115
+ },
116
+ "names": [],
117
+ "idHints": [],
118
+ "runtime": [
119
+ "@kenyaemr/esm-appointments-app",
120
+ "main"
121
+ ],
122
+ "files": [],
123
+ "auxiliaryFiles": [],
124
+ "hash": "6b69f0c8df6106cd",
125
+ "childrenByOrder": {}
126
+ },
127
+ {
128
+ "rendered": true,
129
+ "initial": false,
130
+ "entry": false,
131
+ "recorded": false,
132
+ "size": 416321,
133
+ "sizes": {
134
+ "javascript": 416321
135
+ },
136
+ "names": [],
137
+ "idHints": [],
138
+ "runtime": [
139
+ "@kenyaemr/esm-appointments-app"
140
+ ],
141
+ "files": [
142
+ "224.js"
143
+ ],
144
+ "auxiliaryFiles": [
145
+ "224.js.map"
146
+ ],
147
+ "hash": "356293331fa98266",
148
+ "childrenByOrder": {}
149
+ },
150
+ {
151
+ "rendered": true,
152
+ "initial": false,
153
+ "entry": false,
154
+ "recorded": false,
155
+ "reason": "split chunk (cache group: defaultVendors)",
156
+ "size": 25337,
157
+ "sizes": {
158
+ "javascript": 25337
159
+ },
160
+ "names": [],
161
+ "idHints": [
162
+ "vendors"
163
+ ],
164
+ "runtime": [
165
+ "@kenyaemr/esm-appointments-app",
166
+ "main"
167
+ ],
168
+ "files": [
169
+ "255.js"
170
+ ],
171
+ "auxiliaryFiles": [
172
+ "255.js.map"
173
+ ],
174
+ "hash": "61a5457be5f99e27",
175
+ "childrenByOrder": {}
176
+ },
177
+ {
178
+ "rendered": false,
179
+ "initial": false,
180
+ "entry": false,
181
+ "recorded": false,
182
+ "reason": "reused as split chunk (cache group: default)",
183
+ "size": 42,
184
+ "sizes": {
185
+ "consume-shared": 42
186
+ },
187
+ "names": [],
188
+ "idHints": [],
189
+ "runtime": [
190
+ "@kenyaemr/esm-appointments-app",
191
+ "main"
192
+ ],
193
+ "files": [],
194
+ "auxiliaryFiles": [],
195
+ "hash": "18d54946add1b0f6",
196
+ "childrenByOrder": {}
197
+ },
198
+ {
199
+ "rendered": true,
200
+ "initial": false,
201
+ "entry": false,
202
+ "recorded": false,
203
+ "size": 3521,
204
+ "sizes": {
205
+ "javascript": 3521
206
+ },
207
+ "names": [],
208
+ "idHints": [],
209
+ "runtime": [
210
+ "@kenyaemr/esm-appointments-app",
211
+ "main"
212
+ ],
213
+ "files": [
214
+ "271.js"
215
+ ],
216
+ "auxiliaryFiles": [],
217
+ "hash": "473492f5c8749db3",
218
+ "childrenByOrder": {}
219
+ },
220
+ {
221
+ "rendered": true,
222
+ "initial": false,
223
+ "entry": false,
224
+ "recorded": false,
225
+ "size": 480,
226
+ "sizes": {
227
+ "javascript": 480
228
+ },
229
+ "names": [],
230
+ "idHints": [],
231
+ "runtime": [
232
+ "@kenyaemr/esm-appointments-app",
233
+ "main"
234
+ ],
235
+ "files": [
236
+ "303.js"
237
+ ],
238
+ "auxiliaryFiles": [
239
+ "303.js.map"
240
+ ],
241
+ "hash": "4f6ed605f1709e32",
242
+ "childrenByOrder": {}
243
+ },
244
+ {
245
+ "rendered": true,
246
+ "initial": false,
247
+ "entry": false,
248
+ "recorded": false,
249
+ "size": 4116,
250
+ "sizes": {
251
+ "javascript": 4116
252
+ },
253
+ "names": [],
254
+ "idHints": [],
255
+ "runtime": [
256
+ "@kenyaemr/esm-appointments-app",
257
+ "main"
258
+ ],
259
+ "files": [
260
+ "309.js"
261
+ ],
262
+ "auxiliaryFiles": [
263
+ "309.js.map"
264
+ ],
265
+ "hash": "e7d0956c0815e9df",
266
+ "childrenByOrder": {}
267
+ },
268
+ {
269
+ "rendered": true,
270
+ "initial": false,
271
+ "entry": false,
272
+ "recorded": false,
273
+ "size": 5223,
274
+ "sizes": {
275
+ "javascript": 5223
276
+ },
277
+ "names": [],
278
+ "idHints": [],
279
+ "runtime": [
280
+ "@kenyaemr/esm-appointments-app",
281
+ "main"
282
+ ],
283
+ "files": [
284
+ "319.js"
285
+ ],
286
+ "auxiliaryFiles": [],
287
+ "hash": "fcd28d1acebb66fa",
288
+ "childrenByOrder": {}
289
+ },
290
+ {
291
+ "rendered": false,
292
+ "initial": false,
293
+ "entry": false,
294
+ "recorded": false,
295
+ "reason": "split chunk (cache group: default)",
296
+ "size": 42,
297
+ "sizes": {
298
+ "consume-shared": 42
299
+ },
300
+ "names": [],
301
+ "idHints": [],
302
+ "runtime": [
303
+ "@kenyaemr/esm-appointments-app",
304
+ "main"
305
+ ],
306
+ "files": [],
307
+ "auxiliaryFiles": [],
308
+ "hash": "4e69be3bb5544f3b",
309
+ "childrenByOrder": {}
310
+ },
311
+ {
312
+ "rendered": true,
313
+ "initial": false,
314
+ "entry": false,
315
+ "recorded": false,
316
+ "reason": "split chunk (cache group: defaultVendors)",
317
+ "size": 3533786,
318
+ "sizes": {
319
+ "javascript": 3533786
320
+ },
321
+ "names": [],
322
+ "idHints": [
323
+ "vendors"
324
+ ],
325
+ "runtime": [
326
+ "@kenyaemr/esm-appointments-app"
327
+ ],
328
+ "files": [
329
+ "445.js"
330
+ ],
331
+ "auxiliaryFiles": [
332
+ "445.js.map"
333
+ ],
334
+ "hash": "4bd8a67527a3db54",
335
+ "childrenByOrder": {}
336
+ },
337
+ {
338
+ "rendered": true,
339
+ "initial": false,
340
+ "entry": false,
341
+ "recorded": false,
342
+ "size": 4768,
343
+ "sizes": {
344
+ "javascript": 4768
345
+ },
346
+ "names": [],
347
+ "idHints": [],
348
+ "runtime": [
349
+ "@kenyaemr/esm-appointments-app",
350
+ "main"
351
+ ],
352
+ "files": [
353
+ "460.js"
354
+ ],
355
+ "auxiliaryFiles": [],
356
+ "hash": "f6aab25a42ab5285",
357
+ "childrenByOrder": {}
358
+ },
359
+ {
360
+ "rendered": true,
361
+ "initial": false,
362
+ "entry": false,
363
+ "recorded": false,
364
+ "reason": "reused as split chunk (cache group: defaultVendors)",
365
+ "size": 40067,
366
+ "sizes": {
367
+ "javascript": 40067
368
+ },
369
+ "names": [],
370
+ "idHints": [
371
+ "vendors"
372
+ ],
373
+ "runtime": [
374
+ "@kenyaemr/esm-appointments-app",
375
+ "main"
376
+ ],
377
+ "files": [
378
+ "501.js"
379
+ ],
380
+ "auxiliaryFiles": [
381
+ "501.js.map"
382
+ ],
383
+ "hash": "3e95a62f77c75855",
384
+ "childrenByOrder": {}
385
+ },
386
+ {
387
+ "rendered": true,
388
+ "initial": false,
389
+ "entry": false,
390
+ "recorded": false,
391
+ "size": 6080,
392
+ "sizes": {
393
+ "javascript": 6080
394
+ },
395
+ "names": [],
396
+ "idHints": [],
397
+ "runtime": [
398
+ "@kenyaemr/esm-appointments-app",
399
+ "main"
400
+ ],
401
+ "files": [
402
+ "574.js"
403
+ ],
404
+ "auxiliaryFiles": [],
405
+ "hash": "dc2cda77137c4315",
406
+ "childrenByOrder": {}
407
+ },
408
+ {
409
+ "rendered": true,
410
+ "initial": false,
411
+ "entry": false,
412
+ "recorded": false,
413
+ "reason": "reused as split chunk (cache group: defaultVendors)",
414
+ "size": 190348,
415
+ "sizes": {
416
+ "javascript": 190348
417
+ },
418
+ "names": [],
419
+ "idHints": [
420
+ "vendors"
421
+ ],
422
+ "runtime": [
423
+ "@kenyaemr/esm-appointments-app",
424
+ "main"
425
+ ],
426
+ "files": [
427
+ "591.js"
428
+ ],
429
+ "auxiliaryFiles": [
430
+ "591.js.map"
431
+ ],
432
+ "hash": "8d4b5d69c6cfa878",
433
+ "childrenByOrder": {}
434
+ },
435
+ {
436
+ "rendered": true,
437
+ "initial": false,
438
+ "entry": false,
439
+ "recorded": false,
440
+ "size": 3521,
441
+ "sizes": {
442
+ "javascript": 3521
443
+ },
444
+ "names": [],
445
+ "idHints": [],
446
+ "runtime": [
447
+ "@kenyaemr/esm-appointments-app",
448
+ "main"
449
+ ],
450
+ "files": [
451
+ "644.js"
452
+ ],
453
+ "auxiliaryFiles": [],
454
+ "hash": "1f8a4c80aef46069",
455
+ "childrenByOrder": {}
456
+ },
457
+ {
458
+ "rendered": false,
459
+ "initial": false,
460
+ "entry": false,
461
+ "recorded": false,
462
+ "reason": "split chunk (cache group: default)",
463
+ "size": 168,
464
+ "sizes": {
465
+ "consume-shared": 168
466
+ },
467
+ "names": [],
468
+ "idHints": [],
469
+ "runtime": [
470
+ "@kenyaemr/esm-appointments-app",
471
+ "main"
472
+ ],
473
+ "files": [],
474
+ "auxiliaryFiles": [],
475
+ "hash": "2dc34e306ef112c4",
476
+ "childrenByOrder": {}
477
+ },
478
+ {
479
+ "rendered": true,
480
+ "initial": false,
481
+ "entry": false,
482
+ "recorded": false,
483
+ "reason": "reused as split chunk (cache group: defaultVendors)",
484
+ "size": 25530,
485
+ "sizes": {
486
+ "javascript": 25530
487
+ },
488
+ "names": [],
489
+ "idHints": [
490
+ "vendors"
491
+ ],
492
+ "runtime": [
493
+ "@kenyaemr/esm-appointments-app",
494
+ "main"
495
+ ],
496
+ "files": [
497
+ "729.js"
498
+ ],
499
+ "auxiliaryFiles": [
500
+ "729.js.map"
501
+ ],
502
+ "hash": "b3b48a4a60ec6360",
503
+ "childrenByOrder": {}
504
+ },
505
+ {
506
+ "rendered": true,
507
+ "initial": false,
508
+ "entry": false,
509
+ "recorded": false,
510
+ "size": 5151,
511
+ "sizes": {
512
+ "javascript": 5151
513
+ },
514
+ "names": [],
515
+ "idHints": [],
516
+ "runtime": [
517
+ "@kenyaemr/esm-appointments-app",
518
+ "main"
519
+ ],
520
+ "files": [
521
+ "757.js"
522
+ ],
523
+ "auxiliaryFiles": [],
524
+ "hash": "15f9ef01eee67deb",
525
+ "childrenByOrder": {}
526
+ },
527
+ {
528
+ "rendered": true,
529
+ "initial": false,
530
+ "entry": false,
531
+ "recorded": false,
532
+ "size": 7103,
533
+ "sizes": {
534
+ "javascript": 7103
535
+ },
536
+ "names": [],
537
+ "idHints": [],
538
+ "runtime": [
539
+ "@kenyaemr/esm-appointments-app",
540
+ "main"
541
+ ],
542
+ "files": [
543
+ "784.js"
544
+ ],
545
+ "auxiliaryFiles": [
546
+ "784.js.map"
547
+ ],
548
+ "hash": "9637478b1c2ff6c4",
549
+ "childrenByOrder": {}
550
+ },
551
+ {
552
+ "rendered": true,
553
+ "initial": false,
554
+ "entry": false,
555
+ "recorded": false,
556
+ "size": 5110,
557
+ "sizes": {
558
+ "javascript": 5110
559
+ },
560
+ "names": [],
561
+ "idHints": [],
562
+ "runtime": [
563
+ "@kenyaemr/esm-appointments-app",
564
+ "main"
565
+ ],
566
+ "files": [
567
+ "788.js"
568
+ ],
569
+ "auxiliaryFiles": [],
570
+ "hash": "32ed46bf2ed9f537",
571
+ "childrenByOrder": {}
572
+ },
573
+ {
574
+ "rendered": true,
575
+ "initial": false,
576
+ "entry": false,
577
+ "recorded": false,
578
+ "size": 5253,
579
+ "sizes": {
580
+ "javascript": 5253
581
+ },
582
+ "names": [],
583
+ "idHints": [],
584
+ "runtime": [
585
+ "@kenyaemr/esm-appointments-app",
586
+ "main"
587
+ ],
588
+ "files": [
589
+ "807.js"
590
+ ],
591
+ "auxiliaryFiles": [],
592
+ "hash": "0e1f7945d89f0985",
593
+ "childrenByOrder": {}
594
+ },
595
+ {
596
+ "rendered": true,
597
+ "initial": false,
598
+ "entry": false,
599
+ "recorded": false,
600
+ "size": 4527,
601
+ "sizes": {
602
+ "javascript": 4527
603
+ },
604
+ "names": [],
605
+ "idHints": [],
606
+ "runtime": [
607
+ "@kenyaemr/esm-appointments-app",
608
+ "main"
609
+ ],
610
+ "files": [
611
+ "833.js"
612
+ ],
613
+ "auxiliaryFiles": [],
614
+ "hash": "7ae88a4697985a1a",
615
+ "childrenByOrder": {}
616
+ },
617
+ {
618
+ "rendered": true,
619
+ "initial": false,
620
+ "entry": false,
621
+ "recorded": false,
622
+ "reason": "split chunk (cache group: defaultVendors)",
623
+ "size": 764911,
624
+ "sizes": {
625
+ "javascript": 764911
626
+ },
627
+ "names": [],
628
+ "idHints": [
629
+ "vendors"
630
+ ],
631
+ "runtime": [
632
+ "@kenyaemr/esm-appointments-app",
633
+ "main"
634
+ ],
635
+ "files": [
636
+ "857.js"
637
+ ],
638
+ "auxiliaryFiles": [
639
+ "857.js.map"
640
+ ],
641
+ "hash": "02b7ab64feb9a713",
642
+ "childrenByOrder": {}
643
+ },
644
+ {
645
+ "rendered": true,
646
+ "initial": false,
647
+ "entry": false,
648
+ "recorded": false,
649
+ "reason": "split chunk (cache group: defaultVendors)",
650
+ "size": 222663,
651
+ "sizes": {
652
+ "javascript": 222663
653
+ },
654
+ "names": [],
655
+ "idHints": [
656
+ "vendors"
657
+ ],
658
+ "runtime": [
659
+ "@kenyaemr/esm-appointments-app",
660
+ "main"
661
+ ],
662
+ "files": [
663
+ "904.js"
664
+ ],
665
+ "auxiliaryFiles": [
666
+ "904.js.map"
667
+ ],
668
+ "hash": "b17882ed9e74dac8",
669
+ "childrenByOrder": {}
670
+ },
671
+ {
672
+ "rendered": true,
673
+ "initial": true,
674
+ "entry": true,
675
+ "recorded": false,
676
+ "size": 20950,
677
+ "sizes": {
678
+ "javascript": 42,
679
+ "share-init": 294,
680
+ "runtime": 20614
681
+ },
682
+ "names": [
683
+ "@kenyaemr/esm-appointments-app"
684
+ ],
685
+ "idHints": [],
686
+ "runtime": [
687
+ "@kenyaemr/esm-appointments-app"
688
+ ],
689
+ "files": [
690
+ "kenyaemr-esm-appointments-app.js"
691
+ ],
692
+ "auxiliaryFiles": [
693
+ "kenyaemr-esm-appointments-app.js.map"
694
+ ],
695
+ "hash": "e1b042ee505081e7",
696
+ "childrenByOrder": {}
697
+ }
698
+ ]
699
+ }