@digihmis/esm-administration-app 1.0.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.
Files changed (206) hide show
  1. package/README.md +4 -0
  2. package/dist/101.js +1 -0
  3. package/dist/101.js.map +1 -0
  4. package/dist/117.js +1 -0
  5. package/dist/117.js.map +1 -0
  6. package/dist/132.js +1 -0
  7. package/dist/132.js.map +1 -0
  8. package/dist/15.js +1 -0
  9. package/dist/15.js.map +1 -0
  10. package/dist/152.js +1 -0
  11. package/dist/152.js.map +1 -0
  12. package/dist/153.js +1 -0
  13. package/dist/153.js.map +1 -0
  14. package/dist/190.js +1 -0
  15. package/dist/190.js.map +1 -0
  16. package/dist/209.js +1 -0
  17. package/dist/209.js.map +1 -0
  18. package/dist/266.js +1 -0
  19. package/dist/266.js.map +1 -0
  20. package/dist/317.js +1 -0
  21. package/dist/317.js.map +1 -0
  22. package/dist/349.js +1 -0
  23. package/dist/349.js.map +1 -0
  24. package/dist/371.js +1 -0
  25. package/dist/371.js.map +1 -0
  26. package/dist/378.js +1 -0
  27. package/dist/378.js.map +1 -0
  28. package/dist/394.js +1 -0
  29. package/dist/394.js.map +1 -0
  30. package/dist/442.js +1 -0
  31. package/dist/442.js.map +1 -0
  32. package/dist/45.js +1 -0
  33. package/dist/45.js.map +1 -0
  34. package/dist/454.js +1 -0
  35. package/dist/454.js.map +1 -0
  36. package/dist/466.js +1 -0
  37. package/dist/466.js.map +1 -0
  38. package/dist/482.js +1 -0
  39. package/dist/482.js.map +1 -0
  40. package/dist/501.js +1 -0
  41. package/dist/501.js.map +1 -0
  42. package/dist/508.js +1 -0
  43. package/dist/508.js.map +1 -0
  44. package/dist/578.js +1 -0
  45. package/dist/578.js.map +1 -0
  46. package/dist/598.js +1 -0
  47. package/dist/598.js.map +1 -0
  48. package/dist/606.js +1 -0
  49. package/dist/606.js.map +1 -0
  50. package/dist/61.js +1 -0
  51. package/dist/61.js.map +1 -0
  52. package/dist/640.js +1 -0
  53. package/dist/640.js.map +1 -0
  54. package/dist/685.js +1 -0
  55. package/dist/685.js.map +1 -0
  56. package/dist/689.js +1 -0
  57. package/dist/689.js.map +1 -0
  58. package/dist/709.js +1 -0
  59. package/dist/709.js.map +1 -0
  60. package/dist/712.js +1 -0
  61. package/dist/712.js.map +1 -0
  62. package/dist/720.js +1 -0
  63. package/dist/720.js.map +1 -0
  64. package/dist/737.js +12 -0
  65. package/dist/737.js.map +1 -0
  66. package/dist/742.js +1 -0
  67. package/dist/742.js.map +1 -0
  68. package/dist/747.js +1 -0
  69. package/dist/747.js.map +1 -0
  70. package/dist/771.js +1 -0
  71. package/dist/771.js.map +1 -0
  72. package/dist/806.js +1 -0
  73. package/dist/806.js.map +1 -0
  74. package/dist/912.js +1 -0
  75. package/dist/912.js.map +1 -0
  76. package/dist/913.js +1 -0
  77. package/dist/913.js.map +1 -0
  78. package/dist/916.js +15 -0
  79. package/dist/916.js.map +1 -0
  80. package/dist/940.js +1 -0
  81. package/dist/940.js.map +1 -0
  82. package/dist/digihmis-esm-administration-app.js +6 -0
  83. package/dist/digihmis-esm-administration-app.js.buildmanifest.json +1100 -0
  84. package/dist/digihmis-esm-administration-app.js.map +1 -0
  85. package/dist/main.js +17 -0
  86. package/dist/main.js.map +1 -0
  87. package/dist/routes.json +1 -0
  88. package/increment-version.js +17 -0
  89. package/jest.config.js +26 -0
  90. package/package.json +51 -0
  91. package/release-version.js +16 -0
  92. package/rspack.config.js +1 -0
  93. package/src/bed-management/bed-management.component.tsx +19 -0
  94. package/src/bed-management/bed-management.scss +0 -0
  95. package/src/billing-management/billing-charge-items/billing-charge-items-modal/billing-charge-items.modal.tsx +79 -0
  96. package/src/billing-management/billing-charge-items/billing-charge-items-modal/billing-charge-items.resource.ts +11 -0
  97. package/src/billing-management/billing-charge-items/billing-charge-items-workspace/billing-charge-item.workspace.tsx +212 -0
  98. package/src/billing-management/billing-charge-items/billing-charge-items-workspace/billing-charge-items.resource.ts +51 -0
  99. package/src/billing-management/billing-charge-items/billing-charge-items-workspace/billing-charge-service.workspace.tsx +296 -0
  100. package/src/billing-management/billing-charge-items/billing-charge-items-workspace/components/concept-search.component.tsx +67 -0
  101. package/src/billing-management/billing-charge-items/billing-charge-items-workspace/components/price.component.tsx +81 -0
  102. package/src/billing-management/billing-charge-items/billing-charge-items-workspace/components/stock-search.component.tsx +107 -0
  103. package/src/billing-management/billing-charge-items/billing-charge-items-workspace/global/billing-charge-commodity.scss +61 -0
  104. package/src/billing-management/billing-charge-items/billing-charge-items-workspace/global/billing-charge-items.scss +59 -0
  105. package/src/billing-management/billing-charge-items/billing-charge-items-workspace/schemas/form-schemas.ts +33 -0
  106. package/src/billing-management/billing-charge-items/billing-charge-items.component.tsx +222 -0
  107. package/src/billing-management/billing-charge-items/billing-charge-items.resource.ts +20 -0
  108. package/src/billing-management/billing-charge-items/billing-charge-items.scss +84 -0
  109. package/src/billing-management/billing-charge-items/type/index.ts +88 -0
  110. package/src/billing-management/billing-charge-items/utils/index.ts +96 -0
  111. package/src/billing-management/billing-management.component.tsx +21 -0
  112. package/src/billing-management/billing-management.scss +0 -0
  113. package/src/billing-management/billing-payment-modes/billing-payment-modes-modal/billing-delete-payment-modes.modal.scss +28 -0
  114. package/src/billing-management/billing-payment-modes/billing-payment-modes-modal/billing-delete-payment-modes.modal.tsx +67 -0
  115. package/src/billing-management/billing-payment-modes/billing-payment-modes-modal/delete-payment-mode.test.tsx +56 -0
  116. package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/billing-payment-modes-form-schema.ts +52 -0
  117. package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/billing-payment-modes.resource.ts +35 -0
  118. package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/billing-payment-modes.workspace.scss +33 -0
  119. package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/billing-payment-modes.workspace.test.tsx +239 -0
  120. package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/billing-payment-modes.workspace.tsx +218 -0
  121. package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/payment-attributes/payment-mode-attributes.component.tsx +156 -0
  122. package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/payment-attributes/payment-mode-attributes.scss +10 -0
  123. package/src/billing-management/billing-payment-modes/billing-payment-modes.component.tsx +243 -0
  124. package/src/billing-management/billing-payment-modes/billing-payment-modes.resource.ts +23 -0
  125. package/src/billing-management/billing-payment-modes/billing-payment-modes.scss +140 -0
  126. package/src/billing-management/billing-payment-modes/type/index.ts +42 -0
  127. package/src/billing-management/billing-payment-points/billing-payment-point-modal/billing-delete-payment-modes.modal.scss +28 -0
  128. package/src/billing-management/billing-payment-points/billing-payment-point-modal/billing-delete-payment-point.modal.tsx +72 -0
  129. package/src/billing-management/billing-payment-points/billing-payment-point-modal/delete-payment-point.test.tsx +56 -0
  130. package/src/billing-management/billing-payment-points/billing-payment-point.component.tsx +202 -0
  131. package/src/billing-management/billing-payment-points/billing-payment-point.resource.ts +16 -0
  132. package/src/billing-management/billing-payment-points/billing-payment-point.scss +0 -0
  133. package/src/billing-management/billing-payment-points/billing-payment-points-workspace/billing-payment-point.resource.ts +39 -0
  134. package/src/billing-management/billing-payment-points/billing-payment-points-workspace/billing-payment-point.workspace.scss +33 -0
  135. package/src/billing-management/billing-payment-points/billing-payment-points-workspace/billing-payment-points.workspace.tsx +194 -0
  136. package/src/billing-management/billing-payment-points/type/index.ts +35 -0
  137. package/src/billing-management/billing-tabs/billing-tabs.component.scss +15 -0
  138. package/src/billing-management/billing-tabs/billing-tabs.component.tsx +36 -0
  139. package/src/components/custom-icon-wrapper/custom-icon-wrapper.component.tsx +17 -0
  140. package/src/components/custom-page-header/custom-page-header.component.tsx +38 -0
  141. package/src/components/custom-page-header/custom-page-header.scss +76 -0
  142. package/src/config-schema.ts +142 -0
  143. package/src/constant/index.ts +1 -0
  144. package/src/dashboard.meta.ts +47 -0
  145. package/src/declarations.d.ts +6 -0
  146. package/src/form-builder/form-builder.component.tsx +19 -0
  147. package/src/form-builder/form-builder.scss +0 -0
  148. package/src/hooks/useConcept.ts +13 -0
  149. package/src/hooks/useQueues.ts +22 -0
  150. package/src/hooks/useSystemSetting.ts +18 -0
  151. package/src/index.ts +133 -0
  152. package/src/left-panel/left-panel.component.tsx +49 -0
  153. package/src/left-panel/left-panel.scss +13 -0
  154. package/src/location-management/components/auto-suggest/autosuggest.component.tsx +149 -0
  155. package/src/location-management/components/auto-suggest/autosuggest.scss +61 -0
  156. package/src/location-management/components/auto-suggest/location-autosuggest.component.tsx +97 -0
  157. package/src/location-management/components/auto-suggest/location-autosuggest.scss +48 -0
  158. package/src/location-management/components/custom-results-tile/results-tile.component.tsx +43 -0
  159. package/src/location-management/components/custom-results-tile/results-tile.scss +86 -0
  160. package/src/location-management/forms/add-location/add-location.workspace.scss +71 -0
  161. package/src/location-management/forms/add-location/add-location.workspace.tsx +199 -0
  162. package/src/location-management/forms/search-location/search-location.workspace.scss +71 -0
  163. package/src/location-management/forms/search-location/search-location.workspace.tsx +214 -0
  164. package/src/location-management/helpers/index.ts +33 -0
  165. package/src/location-management/hooks/UseFacilityLocations.ts +12 -0
  166. package/src/location-management/hooks/useLocation.ts +18 -0
  167. package/src/location-management/hooks/useLocationTags.ts +15 -0
  168. package/src/location-management/location-management-dashboard.component.tsx +21 -0
  169. package/src/location-management/location-management-dashboard.scss +3 -0
  170. package/src/location-management/tables/locations-table.component.tsx +242 -0
  171. package/src/location-management/tables/locations-table.resource.ts +26 -0
  172. package/src/location-management/tables/locations-table.scss +114 -0
  173. package/src/location-management/types/index.ts +120 -0
  174. package/src/queue-management/queue-management-dashboard.component.tsx +23 -0
  175. package/src/queue-management/queue-management-dashboard.scss +8 -0
  176. package/src/queue-management/queue-management-table/queue-management-table.component.tsx +296 -0
  177. package/src/queue-management/queue-management-table/queue-management-table.scss +78 -0
  178. package/src/queue-management/queue-management-table/queue-management.resource.ts +39 -0
  179. package/src/queue-management/queue-management-workspace/queue-room/queue-room-form.scss +56 -0
  180. package/src/queue-management/queue-management-workspace/queue-room/queue-room-form.test.tsx +82 -0
  181. package/src/queue-management/queue-management-workspace/queue-room/queue-room-form.workspace.tsx +169 -0
  182. package/src/queue-management/queue-management-workspace/queue-room/queue-room.resource.ts +20 -0
  183. package/src/queue-management/queue-management-workspace/queue-service/queue-service-form.scss +61 -0
  184. package/src/queue-management/queue-management-workspace/queue-service/queue-service-form.test.tsx +127 -0
  185. package/src/queue-management/queue-management-workspace/queue-service/queue-service-form.workspace.tsx +178 -0
  186. package/src/queue-management/queue-management-workspace/queue-service/queue-service.resource.ts +55 -0
  187. package/src/queue-management/queue-types/index.ts +33 -0
  188. package/src/routes.json +157 -0
  189. package/src/setup-tests.ts +1 -0
  190. package/src/system-info/system-info.component.tsx +338 -0
  191. package/src/system-info/system-info.resource.ts +40 -0
  192. package/src/system-info/system-info.scss +622 -0
  193. package/src/type/index.ts +6 -0
  194. package/translations/am.json +111 -0
  195. package/translations/ar.json +115 -0
  196. package/translations/en.json +111 -0
  197. package/translations/es.json +112 -0
  198. package/translations/fr.json +112 -0
  199. package/translations/he.json +112 -0
  200. package/translations/km.json +110 -0
  201. package/translations/pt.json +112 -0
  202. package/translations/sw.json +111 -0
  203. package/translations/vi.json +110 -0
  204. package/translations/zh.json +110 -0
  205. package/tsconfig.json +5 -0
  206. package/version.js +27 -0
@@ -0,0 +1,1100 @@
1
+ {
2
+ "chunks": [
3
+ {
4
+ "type": "chunk",
5
+ "rendered": true,
6
+ "initial": false,
7
+ "entry": false,
8
+ "size": 70622,
9
+ "sizes": {
10
+ "javascript": 70622
11
+ },
12
+ "names": [],
13
+ "idHints": [],
14
+ "runtime": [
15
+ "@digihmis/esm-administration-app",
16
+ "main"
17
+ ],
18
+ "files": [
19
+ "101.js"
20
+ ],
21
+ "auxiliaryFiles": [
22
+ "101.js.map"
23
+ ],
24
+ "hash": "be5afa917dc27895",
25
+ "childrenByOrder": {}
26
+ },
27
+ {
28
+ "type": "chunk",
29
+ "rendered": true,
30
+ "initial": false,
31
+ "entry": false,
32
+ "size": 3953,
33
+ "sizes": {
34
+ "javascript": 3953
35
+ },
36
+ "names": [],
37
+ "idHints": [],
38
+ "runtime": [
39
+ "@digihmis/esm-administration-app",
40
+ "main"
41
+ ],
42
+ "files": [
43
+ "117.js"
44
+ ],
45
+ "auxiliaryFiles": [
46
+ "117.js.map"
47
+ ],
48
+ "hash": "3ca1d0029d8e2c44",
49
+ "childrenByOrder": {}
50
+ },
51
+ {
52
+ "type": "chunk",
53
+ "rendered": true,
54
+ "initial": false,
55
+ "entry": false,
56
+ "size": 4112,
57
+ "sizes": {
58
+ "javascript": 4112
59
+ },
60
+ "names": [],
61
+ "idHints": [],
62
+ "runtime": [
63
+ "@digihmis/esm-administration-app",
64
+ "main"
65
+ ],
66
+ "files": [
67
+ "132.js"
68
+ ],
69
+ "auxiliaryFiles": [
70
+ "132.js.map"
71
+ ],
72
+ "hash": "b3b58c5f9d88a5b3",
73
+ "childrenByOrder": {}
74
+ },
75
+ {
76
+ "type": "chunk",
77
+ "rendered": true,
78
+ "initial": false,
79
+ "entry": false,
80
+ "size": 55839,
81
+ "sizes": {
82
+ "javascript": 55839
83
+ },
84
+ "names": [],
85
+ "idHints": [],
86
+ "runtime": [
87
+ "@digihmis/esm-administration-app",
88
+ "main"
89
+ ],
90
+ "files": [
91
+ "15.js"
92
+ ],
93
+ "auxiliaryFiles": [
94
+ "15.js.map"
95
+ ],
96
+ "hash": "3eb190ea887285c3",
97
+ "childrenByOrder": {}
98
+ },
99
+ {
100
+ "type": "chunk",
101
+ "rendered": true,
102
+ "initial": false,
103
+ "entry": false,
104
+ "size": 14545,
105
+ "sizes": {
106
+ "javascript": 14545
107
+ },
108
+ "names": [],
109
+ "idHints": [],
110
+ "runtime": [
111
+ "@digihmis/esm-administration-app",
112
+ "main"
113
+ ],
114
+ "files": [
115
+ "152.js"
116
+ ],
117
+ "auxiliaryFiles": [
118
+ "152.js.map"
119
+ ],
120
+ "hash": "e2b687e795854b5f",
121
+ "childrenByOrder": {}
122
+ },
123
+ {
124
+ "type": "chunk",
125
+ "rendered": true,
126
+ "initial": false,
127
+ "entry": false,
128
+ "size": 35376,
129
+ "sizes": {
130
+ "javascript": 35376
131
+ },
132
+ "names": [],
133
+ "idHints": [],
134
+ "runtime": [
135
+ "@digihmis/esm-administration-app",
136
+ "main"
137
+ ],
138
+ "files": [
139
+ "153.js"
140
+ ],
141
+ "auxiliaryFiles": [
142
+ "153.js.map"
143
+ ],
144
+ "hash": "e8a079e061658a9d",
145
+ "childrenByOrder": {}
146
+ },
147
+ {
148
+ "type": "chunk",
149
+ "rendered": true,
150
+ "initial": true,
151
+ "entry": true,
152
+ "size": 215709,
153
+ "sizes": {
154
+ "expose": 42,
155
+ "javascript": 215373,
156
+ "runtime": 14900,
157
+ "share-init": 294
158
+ },
159
+ "names": [
160
+ "@digihmis/esm-administration-app"
161
+ ],
162
+ "idHints": [],
163
+ "runtime": [
164
+ "@digihmis/esm-administration-app"
165
+ ],
166
+ "files": [
167
+ "digihmis-esm-administration-app.js"
168
+ ],
169
+ "auxiliaryFiles": [
170
+ "digihmis-esm-administration-app.js.map"
171
+ ],
172
+ "hash": "c2f099479aa1c0da",
173
+ "childrenByOrder": {}
174
+ },
175
+ {
176
+ "type": "chunk",
177
+ "rendered": true,
178
+ "initial": false,
179
+ "entry": false,
180
+ "size": 549260,
181
+ "sizes": {
182
+ "javascript": 549260
183
+ },
184
+ "names": [],
185
+ "idHints": [],
186
+ "runtime": [
187
+ "@digihmis/esm-administration-app"
188
+ ],
189
+ "files": [
190
+ "190.js"
191
+ ],
192
+ "auxiliaryFiles": [
193
+ "190.js.map"
194
+ ],
195
+ "hash": "f87803d6ea3deb80",
196
+ "childrenByOrder": {}
197
+ },
198
+ {
199
+ "type": "chunk",
200
+ "rendered": true,
201
+ "initial": false,
202
+ "entry": false,
203
+ "reason": "split chunk (cache group: defaultVendors)",
204
+ "size": 59303,
205
+ "sizes": {
206
+ "javascript": 59303
207
+ },
208
+ "names": [],
209
+ "idHints": [
210
+ "vendors"
211
+ ],
212
+ "runtime": [
213
+ "@digihmis/esm-administration-app",
214
+ "main"
215
+ ],
216
+ "files": [
217
+ "209.js"
218
+ ],
219
+ "auxiliaryFiles": [
220
+ "209.js.map"
221
+ ],
222
+ "hash": "ce8d65fa9b635630",
223
+ "childrenByOrder": {}
224
+ },
225
+ {
226
+ "type": "chunk",
227
+ "rendered": false,
228
+ "initial": false,
229
+ "entry": false,
230
+ "size": 252,
231
+ "sizes": {
232
+ "consume-shared": 252
233
+ },
234
+ "names": [],
235
+ "idHints": [
236
+ ""
237
+ ],
238
+ "runtime": [
239
+ "@digihmis/esm-administration-app",
240
+ "main"
241
+ ],
242
+ "files": [],
243
+ "auxiliaryFiles": [],
244
+ "hash": "954d5d23ea545fb5",
245
+ "childrenByOrder": {}
246
+ },
247
+ {
248
+ "type": "chunk",
249
+ "rendered": true,
250
+ "initial": false,
251
+ "entry": false,
252
+ "reason": "split chunk (cache group: defaultVendors)",
253
+ "size": 430229,
254
+ "sizes": {
255
+ "javascript": 430229
256
+ },
257
+ "names": [],
258
+ "idHints": [
259
+ "vendors"
260
+ ],
261
+ "runtime": [
262
+ "@digihmis/esm-administration-app"
263
+ ],
264
+ "files": [
265
+ "266.js"
266
+ ],
267
+ "auxiliaryFiles": [
268
+ "266.js.map"
269
+ ],
270
+ "hash": "05f856dc1a1d444f",
271
+ "childrenByOrder": {}
272
+ },
273
+ {
274
+ "type": "chunk",
275
+ "rendered": true,
276
+ "initial": false,
277
+ "entry": false,
278
+ "size": 4111,
279
+ "sizes": {
280
+ "javascript": 4111
281
+ },
282
+ "names": [],
283
+ "idHints": [],
284
+ "runtime": [
285
+ "@digihmis/esm-administration-app",
286
+ "main"
287
+ ],
288
+ "files": [
289
+ "317.js"
290
+ ],
291
+ "auxiliaryFiles": [
292
+ "317.js.map"
293
+ ],
294
+ "hash": "847069707a2b5850",
295
+ "childrenByOrder": {}
296
+ },
297
+ {
298
+ "type": "chunk",
299
+ "rendered": true,
300
+ "initial": false,
301
+ "entry": false,
302
+ "size": 43808,
303
+ "sizes": {
304
+ "javascript": 43808
305
+ },
306
+ "names": [],
307
+ "idHints": [
308
+ "vendors"
309
+ ],
310
+ "runtime": [
311
+ "@digihmis/esm-administration-app",
312
+ "main"
313
+ ],
314
+ "files": [
315
+ "349.js"
316
+ ],
317
+ "auxiliaryFiles": [
318
+ "349.js.map"
319
+ ],
320
+ "hash": "25447c46d8a443a0",
321
+ "childrenByOrder": {}
322
+ },
323
+ {
324
+ "type": "chunk",
325
+ "rendered": true,
326
+ "initial": false,
327
+ "entry": false,
328
+ "size": 3987,
329
+ "sizes": {
330
+ "javascript": 3987
331
+ },
332
+ "names": [],
333
+ "idHints": [],
334
+ "runtime": [
335
+ "@digihmis/esm-administration-app",
336
+ "main"
337
+ ],
338
+ "files": [
339
+ "371.js"
340
+ ],
341
+ "auxiliaryFiles": [
342
+ "371.js.map"
343
+ ],
344
+ "hash": "7ee0fe69ddc844a2",
345
+ "childrenByOrder": {}
346
+ },
347
+ {
348
+ "type": "chunk",
349
+ "rendered": true,
350
+ "initial": false,
351
+ "entry": false,
352
+ "size": 3953,
353
+ "sizes": {
354
+ "javascript": 3953
355
+ },
356
+ "names": [],
357
+ "idHints": [],
358
+ "runtime": [
359
+ "@digihmis/esm-administration-app",
360
+ "main"
361
+ ],
362
+ "files": [
363
+ "378.js"
364
+ ],
365
+ "auxiliaryFiles": [
366
+ "378.js.map"
367
+ ],
368
+ "hash": "80d0a1bedd50c7ec",
369
+ "childrenByOrder": {}
370
+ },
371
+ {
372
+ "type": "chunk",
373
+ "rendered": true,
374
+ "initial": false,
375
+ "entry": false,
376
+ "size": 53561,
377
+ "sizes": {
378
+ "javascript": 53561
379
+ },
380
+ "names": [],
381
+ "idHints": [],
382
+ "runtime": [
383
+ "@digihmis/esm-administration-app",
384
+ "main"
385
+ ],
386
+ "files": [
387
+ "394.js"
388
+ ],
389
+ "auxiliaryFiles": [
390
+ "394.js.map"
391
+ ],
392
+ "hash": "7203c4d234a73cdf",
393
+ "childrenByOrder": {}
394
+ },
395
+ {
396
+ "type": "chunk",
397
+ "rendered": true,
398
+ "initial": false,
399
+ "entry": false,
400
+ "size": 504,
401
+ "sizes": {
402
+ "javascript": 504
403
+ },
404
+ "names": [],
405
+ "idHints": [],
406
+ "runtime": [
407
+ "@digihmis/esm-administration-app",
408
+ "main"
409
+ ],
410
+ "files": [
411
+ "442.js"
412
+ ],
413
+ "auxiliaryFiles": [
414
+ "442.js.map"
415
+ ],
416
+ "hash": "94fee0d67a0fd27c",
417
+ "childrenByOrder": {}
418
+ },
419
+ {
420
+ "type": "chunk",
421
+ "rendered": true,
422
+ "initial": false,
423
+ "entry": false,
424
+ "size": 4299,
425
+ "sizes": {
426
+ "javascript": 4299
427
+ },
428
+ "names": [],
429
+ "idHints": [],
430
+ "runtime": [
431
+ "@digihmis/esm-administration-app",
432
+ "main"
433
+ ],
434
+ "files": [
435
+ "45.js"
436
+ ],
437
+ "auxiliaryFiles": [
438
+ "45.js.map"
439
+ ],
440
+ "hash": "9742f76b98b4003e",
441
+ "childrenByOrder": {}
442
+ },
443
+ {
444
+ "type": "chunk",
445
+ "rendered": true,
446
+ "initial": false,
447
+ "entry": false,
448
+ "size": 200089,
449
+ "sizes": {
450
+ "javascript": 200089
451
+ },
452
+ "names": [],
453
+ "idHints": [],
454
+ "runtime": [
455
+ "@digihmis/esm-administration-app",
456
+ "main"
457
+ ],
458
+ "files": [
459
+ "454.js"
460
+ ],
461
+ "auxiliaryFiles": [
462
+ "454.js.map"
463
+ ],
464
+ "hash": "a833eafa4d1d9efa",
465
+ "childrenByOrder": {}
466
+ },
467
+ {
468
+ "type": "chunk",
469
+ "rendered": true,
470
+ "initial": false,
471
+ "entry": false,
472
+ "size": 7120,
473
+ "sizes": {
474
+ "javascript": 7120
475
+ },
476
+ "names": [],
477
+ "idHints": [],
478
+ "runtime": [
479
+ "@digihmis/esm-administration-app",
480
+ "main"
481
+ ],
482
+ "files": [
483
+ "466.js"
484
+ ],
485
+ "auxiliaryFiles": [
486
+ "466.js.map"
487
+ ],
488
+ "hash": "14613fd6949781a5",
489
+ "childrenByOrder": {}
490
+ },
491
+ {
492
+ "type": "chunk",
493
+ "rendered": true,
494
+ "initial": false,
495
+ "entry": false,
496
+ "size": 40929,
497
+ "sizes": {
498
+ "javascript": 40929
499
+ },
500
+ "names": [],
501
+ "idHints": [],
502
+ "runtime": [
503
+ "@digihmis/esm-administration-app",
504
+ "main"
505
+ ],
506
+ "files": [
507
+ "482.js"
508
+ ],
509
+ "auxiliaryFiles": [
510
+ "482.js.map"
511
+ ],
512
+ "hash": "58cbf5b2aabb8de5",
513
+ "childrenByOrder": {}
514
+ },
515
+ {
516
+ "type": "chunk",
517
+ "rendered": false,
518
+ "initial": false,
519
+ "entry": false,
520
+ "size": 42,
521
+ "sizes": {
522
+ "consume-shared": 42
523
+ },
524
+ "names": [],
525
+ "idHints": [
526
+ ""
527
+ ],
528
+ "runtime": [
529
+ "@digihmis/esm-administration-app",
530
+ "main"
531
+ ],
532
+ "files": [],
533
+ "auxiliaryFiles": [],
534
+ "hash": "ca4d9b31bcca8c08",
535
+ "childrenByOrder": {}
536
+ },
537
+ {
538
+ "type": "chunk",
539
+ "rendered": true,
540
+ "initial": false,
541
+ "entry": false,
542
+ "reason": "split chunk (cache group: defaultVendors)",
543
+ "size": 488890,
544
+ "sizes": {
545
+ "javascript": 488890
546
+ },
547
+ "names": [],
548
+ "idHints": [
549
+ "vendors"
550
+ ],
551
+ "runtime": [
552
+ "@digihmis/esm-administration-app",
553
+ "main"
554
+ ],
555
+ "files": [
556
+ "501.js"
557
+ ],
558
+ "auxiliaryFiles": [
559
+ "501.js.map"
560
+ ],
561
+ "hash": "fc5fa8565be9c0d3",
562
+ "childrenByOrder": {}
563
+ },
564
+ {
565
+ "type": "chunk",
566
+ "rendered": true,
567
+ "initial": false,
568
+ "entry": false,
569
+ "size": 4112,
570
+ "sizes": {
571
+ "javascript": 4112
572
+ },
573
+ "names": [],
574
+ "idHints": [],
575
+ "runtime": [
576
+ "@digihmis/esm-administration-app",
577
+ "main"
578
+ ],
579
+ "files": [
580
+ "508.js"
581
+ ],
582
+ "auxiliaryFiles": [
583
+ "508.js.map"
584
+ ],
585
+ "hash": "2d0e35f41185548e",
586
+ "childrenByOrder": {}
587
+ },
588
+ {
589
+ "type": "chunk",
590
+ "rendered": true,
591
+ "initial": false,
592
+ "entry": false,
593
+ "size": 51488,
594
+ "sizes": {
595
+ "javascript": 51488
596
+ },
597
+ "names": [],
598
+ "idHints": [],
599
+ "runtime": [
600
+ "@digihmis/esm-administration-app",
601
+ "main"
602
+ ],
603
+ "files": [
604
+ "578.js"
605
+ ],
606
+ "auxiliaryFiles": [
607
+ "578.js.map"
608
+ ],
609
+ "hash": "0ffcb6188160fbc0",
610
+ "childrenByOrder": {}
611
+ },
612
+ {
613
+ "type": "chunk",
614
+ "rendered": true,
615
+ "initial": false,
616
+ "entry": false,
617
+ "reason": "split chunk (cache group: defaultVendors)",
618
+ "size": 258242,
619
+ "sizes": {
620
+ "javascript": 258242
621
+ },
622
+ "names": [],
623
+ "idHints": [
624
+ "vendors"
625
+ ],
626
+ "runtime": [
627
+ "@digihmis/esm-administration-app",
628
+ "main"
629
+ ],
630
+ "files": [
631
+ "598.js"
632
+ ],
633
+ "auxiliaryFiles": [
634
+ "598.js.map"
635
+ ],
636
+ "hash": "1fbe8a67a51dbf2a",
637
+ "childrenByOrder": {}
638
+ },
639
+ {
640
+ "type": "chunk",
641
+ "rendered": true,
642
+ "initial": false,
643
+ "entry": false,
644
+ "reason": "split chunk (cache group: default)",
645
+ "size": 58944,
646
+ "sizes": {
647
+ "javascript": 58944
648
+ },
649
+ "names": [],
650
+ "idHints": [
651
+ ""
652
+ ],
653
+ "runtime": [
654
+ "@digihmis/esm-administration-app",
655
+ "main"
656
+ ],
657
+ "files": [
658
+ "606.js"
659
+ ],
660
+ "auxiliaryFiles": [
661
+ "606.js.map"
662
+ ],
663
+ "hash": "ec72cbfebdeb9aec",
664
+ "childrenByOrder": {}
665
+ },
666
+ {
667
+ "type": "chunk",
668
+ "rendered": true,
669
+ "initial": false,
670
+ "entry": false,
671
+ "size": 504,
672
+ "sizes": {
673
+ "javascript": 504
674
+ },
675
+ "names": [],
676
+ "idHints": [],
677
+ "runtime": [
678
+ "@digihmis/esm-administration-app",
679
+ "main"
680
+ ],
681
+ "files": [
682
+ "61.js"
683
+ ],
684
+ "auxiliaryFiles": [
685
+ "61.js.map"
686
+ ],
687
+ "hash": "c907493a8fedc486",
688
+ "childrenByOrder": {}
689
+ },
690
+ {
691
+ "type": "chunk",
692
+ "rendered": true,
693
+ "initial": false,
694
+ "entry": false,
695
+ "reason": "split chunk (cache group: defaultVendors)",
696
+ "size": 456532,
697
+ "sizes": {
698
+ "javascript": 456532
699
+ },
700
+ "names": [],
701
+ "idHints": [
702
+ "vendors"
703
+ ],
704
+ "runtime": [
705
+ "@digihmis/esm-administration-app",
706
+ "main"
707
+ ],
708
+ "files": [
709
+ "640.js"
710
+ ],
711
+ "auxiliaryFiles": [
712
+ "640.js.map"
713
+ ],
714
+ "hash": "0b6fb6f661fabe1c",
715
+ "childrenByOrder": {}
716
+ },
717
+ {
718
+ "type": "chunk",
719
+ "rendered": true,
720
+ "initial": false,
721
+ "entry": false,
722
+ "reason": "split chunk (cache group: defaultVendors)",
723
+ "size": 1159894,
724
+ "sizes": {
725
+ "javascript": 1159894
726
+ },
727
+ "names": [],
728
+ "idHints": [
729
+ "vendors"
730
+ ],
731
+ "runtime": [
732
+ "@digihmis/esm-administration-app",
733
+ "main"
734
+ ],
735
+ "files": [
736
+ "685.js"
737
+ ],
738
+ "auxiliaryFiles": [
739
+ "685.js.map"
740
+ ],
741
+ "hash": "66014765bb3e4128",
742
+ "childrenByOrder": {}
743
+ },
744
+ {
745
+ "type": "chunk",
746
+ "rendered": true,
747
+ "initial": false,
748
+ "entry": false,
749
+ "reason": "split chunk (cache group: defaultVendors)",
750
+ "size": 137481,
751
+ "sizes": {
752
+ "javascript": 137481
753
+ },
754
+ "names": [],
755
+ "idHints": [
756
+ "vendors"
757
+ ],
758
+ "runtime": [
759
+ "@digihmis/esm-administration-app",
760
+ "main"
761
+ ],
762
+ "files": [
763
+ "689.js"
764
+ ],
765
+ "auxiliaryFiles": [
766
+ "689.js.map"
767
+ ],
768
+ "hash": "dfeb0a8a80b0ee1b",
769
+ "childrenByOrder": {}
770
+ },
771
+ {
772
+ "type": "chunk",
773
+ "rendered": true,
774
+ "initial": false,
775
+ "entry": false,
776
+ "size": 109266,
777
+ "sizes": {
778
+ "javascript": 109266
779
+ },
780
+ "names": [],
781
+ "idHints": [
782
+ "vendors"
783
+ ],
784
+ "runtime": [
785
+ "@digihmis/esm-administration-app",
786
+ "main"
787
+ ],
788
+ "files": [
789
+ "709.js"
790
+ ],
791
+ "auxiliaryFiles": [
792
+ "709.js.map"
793
+ ],
794
+ "hash": "34ac60cdd5e88125",
795
+ "childrenByOrder": {}
796
+ },
797
+ {
798
+ "type": "chunk",
799
+ "rendered": true,
800
+ "initial": false,
801
+ "entry": false,
802
+ "size": 314795,
803
+ "sizes": {
804
+ "javascript": 314795
805
+ },
806
+ "names": [],
807
+ "idHints": [
808
+ "vendors"
809
+ ],
810
+ "runtime": [
811
+ "@digihmis/esm-administration-app",
812
+ "main"
813
+ ],
814
+ "files": [
815
+ "712.js"
816
+ ],
817
+ "auxiliaryFiles": [
818
+ "712.js.map"
819
+ ],
820
+ "hash": "b239050238365425",
821
+ "childrenByOrder": {}
822
+ },
823
+ {
824
+ "type": "chunk",
825
+ "rendered": true,
826
+ "initial": false,
827
+ "entry": false,
828
+ "size": 2201,
829
+ "sizes": {
830
+ "javascript": 2201
831
+ },
832
+ "names": [],
833
+ "idHints": [],
834
+ "runtime": [
835
+ "@digihmis/esm-administration-app",
836
+ "main"
837
+ ],
838
+ "files": [
839
+ "720.js"
840
+ ],
841
+ "auxiliaryFiles": [
842
+ "720.js.map"
843
+ ],
844
+ "hash": "aee359e7f3e95f4d",
845
+ "childrenByOrder": {}
846
+ },
847
+ {
848
+ "type": "chunk",
849
+ "rendered": true,
850
+ "initial": false,
851
+ "entry": false,
852
+ "reason": "split chunk (cache group: defaultVendors)",
853
+ "size": 4627418,
854
+ "sizes": {
855
+ "javascript": 4627418
856
+ },
857
+ "names": [],
858
+ "idHints": [
859
+ "vendors"
860
+ ],
861
+ "runtime": [
862
+ "@digihmis/esm-administration-app",
863
+ "main"
864
+ ],
865
+ "files": [
866
+ "737.js"
867
+ ],
868
+ "auxiliaryFiles": [
869
+ "737.js.map"
870
+ ],
871
+ "hash": "40e28470c8d4f51f",
872
+ "childrenByOrder": {}
873
+ },
874
+ {
875
+ "type": "chunk",
876
+ "rendered": true,
877
+ "initial": false,
878
+ "entry": false,
879
+ "size": 3987,
880
+ "sizes": {
881
+ "javascript": 3987
882
+ },
883
+ "names": [],
884
+ "idHints": [],
885
+ "runtime": [
886
+ "@digihmis/esm-administration-app",
887
+ "main"
888
+ ],
889
+ "files": [
890
+ "742.js"
891
+ ],
892
+ "auxiliaryFiles": [
893
+ "742.js.map"
894
+ ],
895
+ "hash": "320edb022555ccdb",
896
+ "childrenByOrder": {}
897
+ },
898
+ {
899
+ "type": "chunk",
900
+ "rendered": true,
901
+ "initial": false,
902
+ "entry": false,
903
+ "size": 25540,
904
+ "sizes": {
905
+ "javascript": 25540
906
+ },
907
+ "names": [],
908
+ "idHints": [],
909
+ "runtime": [
910
+ "@digihmis/esm-administration-app",
911
+ "main"
912
+ ],
913
+ "files": [
914
+ "747.js"
915
+ ],
916
+ "auxiliaryFiles": [
917
+ "747.js.map"
918
+ ],
919
+ "hash": "74de11be5ac89860",
920
+ "childrenByOrder": {}
921
+ },
922
+ {
923
+ "type": "chunk",
924
+ "rendered": true,
925
+ "initial": false,
926
+ "entry": false,
927
+ "size": 14545,
928
+ "sizes": {
929
+ "javascript": 14545
930
+ },
931
+ "names": [],
932
+ "idHints": [],
933
+ "runtime": [
934
+ "@digihmis/esm-administration-app",
935
+ "main"
936
+ ],
937
+ "files": [
938
+ "771.js"
939
+ ],
940
+ "auxiliaryFiles": [
941
+ "771.js.map"
942
+ ],
943
+ "hash": "73136e0bd0f0010a",
944
+ "childrenByOrder": {}
945
+ },
946
+ {
947
+ "type": "chunk",
948
+ "rendered": true,
949
+ "initial": false,
950
+ "entry": false,
951
+ "size": 3953,
952
+ "sizes": {
953
+ "javascript": 3953
954
+ },
955
+ "names": [],
956
+ "idHints": [],
957
+ "runtime": [
958
+ "@digihmis/esm-administration-app",
959
+ "main"
960
+ ],
961
+ "files": [
962
+ "806.js"
963
+ ],
964
+ "auxiliaryFiles": [
965
+ "806.js.map"
966
+ ],
967
+ "hash": "3f09043c5130d71a",
968
+ "childrenByOrder": {}
969
+ },
970
+ {
971
+ "type": "chunk",
972
+ "rendered": true,
973
+ "initial": true,
974
+ "entry": true,
975
+ "size": 7716039,
976
+ "sizes": {
977
+ "consume-shared": 294,
978
+ "javascript": 7715451,
979
+ "runtime": 14225,
980
+ "share-init": 294
981
+ },
982
+ "names": [
983
+ "main"
984
+ ],
985
+ "idHints": [],
986
+ "runtime": [
987
+ "main"
988
+ ],
989
+ "files": [
990
+ "main.js"
991
+ ],
992
+ "auxiliaryFiles": [
993
+ "main.js.map"
994
+ ],
995
+ "hash": "6bfd810f322d198c",
996
+ "childrenByOrder": {}
997
+ },
998
+ {
999
+ "type": "chunk",
1000
+ "rendered": true,
1001
+ "initial": false,
1002
+ "entry": false,
1003
+ "size": 4112,
1004
+ "sizes": {
1005
+ "javascript": 4112
1006
+ },
1007
+ "names": [],
1008
+ "idHints": [],
1009
+ "runtime": [
1010
+ "@digihmis/esm-administration-app",
1011
+ "main"
1012
+ ],
1013
+ "files": [
1014
+ "912.js"
1015
+ ],
1016
+ "auxiliaryFiles": [
1017
+ "912.js.map"
1018
+ ],
1019
+ "hash": "34eaf1971f1aff21",
1020
+ "childrenByOrder": {}
1021
+ },
1022
+ {
1023
+ "type": "chunk",
1024
+ "rendered": true,
1025
+ "initial": false,
1026
+ "entry": false,
1027
+ "reason": "split chunk (cache group: defaultVendors)",
1028
+ "size": 80003,
1029
+ "sizes": {
1030
+ "javascript": 80003
1031
+ },
1032
+ "names": [],
1033
+ "idHints": [
1034
+ "vendors"
1035
+ ],
1036
+ "runtime": [
1037
+ "@digihmis/esm-administration-app",
1038
+ "main"
1039
+ ],
1040
+ "files": [
1041
+ "913.js"
1042
+ ],
1043
+ "auxiliaryFiles": [
1044
+ "913.js.map"
1045
+ ],
1046
+ "hash": "8fd56fa6ec9d25e7",
1047
+ "childrenByOrder": {}
1048
+ },
1049
+ {
1050
+ "type": "chunk",
1051
+ "rendered": true,
1052
+ "initial": false,
1053
+ "entry": false,
1054
+ "size": 2637240,
1055
+ "sizes": {
1056
+ "javascript": 2637240
1057
+ },
1058
+ "names": [],
1059
+ "idHints": [
1060
+ "vendors"
1061
+ ],
1062
+ "runtime": [
1063
+ "@digihmis/esm-administration-app",
1064
+ "main"
1065
+ ],
1066
+ "files": [
1067
+ "916.js"
1068
+ ],
1069
+ "auxiliaryFiles": [
1070
+ "916.js.map"
1071
+ ],
1072
+ "hash": "6323ee7293651cff",
1073
+ "childrenByOrder": {}
1074
+ },
1075
+ {
1076
+ "type": "chunk",
1077
+ "rendered": true,
1078
+ "initial": false,
1079
+ "entry": false,
1080
+ "size": 3987,
1081
+ "sizes": {
1082
+ "javascript": 3987
1083
+ },
1084
+ "names": [],
1085
+ "idHints": [],
1086
+ "runtime": [
1087
+ "@digihmis/esm-administration-app",
1088
+ "main"
1089
+ ],
1090
+ "files": [
1091
+ "940.js"
1092
+ ],
1093
+ "auxiliaryFiles": [
1094
+ "940.js.map"
1095
+ ],
1096
+ "hash": "2dc536ccb791dc72",
1097
+ "childrenByOrder": {}
1098
+ }
1099
+ ]
1100
+ }